forked from mindspore-Ecosystem/mindspore
!31974 Ascend710 online compile bugfix
Merge pull request !31974 from chenping/master
This commit is contained in:
commit
0fe11f45af
|
@ -718,12 +718,12 @@ else()
|
|||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libturbojpeg.so.0 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${tinyxml2_LIBPATH}/libtinyxml2.so.8.0.0
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libtinyxml2.so.8 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicuuc.so.67.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicuuc.so.67 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicudata.so.67.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicudata.so.67 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicui18n.so.67.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicui18n.so.67 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicuuc.so.69.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicuuc.so.69 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicudata.so.69.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicudata.so.69 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${icu4c_LIBPATH}/libicui18n.so.69.1
|
||||
DESTINATION ${RUNTIME_LIB_DIR} RENAME libicui18n.so.69 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${grpc_LIBPATH}/libmindspore_grpc++.so.1.36.1 DESTINATION ${RUNTIME_LIB_DIR}
|
||||
RENAME libmindspore_grpc++.so.1 COMPONENT ${RUNTIME_COMPONENT_NAME})
|
||||
install(FILES ${grpc_LIBPATH}/libmindspore_grpc.so.15.0.0 DESTINATION
|
||||
|
|
|
@ -6,7 +6,9 @@ include_directories(${CCSRC_DIR}/plugin/device/cpu/kernel)
|
|||
include_directories(${CORE_DIR})
|
||||
|
||||
set(TOOLS_DIR ${CMAKE_CURRENT_SOURCE_DIR}/../tools)
|
||||
add_compile_definitions(BUILD_LITE_INFERENCE)
|
||||
if(NOT MSLITE_ENABLE_RUNTIME_CONVERT)
|
||||
add_compile_definitions(BUILD_LITE_INFERENCE)
|
||||
endif()
|
||||
if(NOT MSLITE_ENABLE_STRING_KERNEL)
|
||||
add_compile_definitions(STRING_KERNEL_CLIP)
|
||||
endif()
|
||||
|
|
Loading…
Reference in New Issue