Browse Source

!665 rename libalog.so as libascendalog.so

Merge pull request !665 from 赵鲁鹏/ge_dev
pull/668/MERGE
王涛 Gitee 2 years ago
parent
commit
c8e0f6422a
No known key found for this signature in database GPG Key ID: 173E9B9CA92EEF8F
1 changed files with 10 additions and 2 deletions
  1. +10
    -2
      CMakeLists.txt

+ 10
- 2
CMakeLists.txt View File

@@ -43,7 +43,11 @@ if (ENABLE_OPEN_SRC)
message(FATAL_ERROR "Running on a unsupported architecture: ${SYSTEM_TYPE}, build terminated")
endif()
set(GE_LIB_PATH ${GE_LIB_PATH}/${GE_SYS_ARCH})
find_module(slog libalog.so ${GE_LIB_PATH})
if(ENABLE_OPEN_SRC)
find_module(slog libalog.so ${GE_LIB_PATH})
else()
find_module(slog libascendalog.so ${GE_LIB_PATH})
endif()
find_module(static_mmpa libmmpa.a ${GE_LIB_PATH})
elseif(ENABLE_GE_COV OR ENABLE_GE_UT)
message(STATUS "Runing on llt mode, no need to depend other component")
@@ -58,7 +62,11 @@ if (ENABLE_OPEN_SRC)
endif()

set(ASCEND_COMPILER_DIR ${ASCEND_DIR}/compiler/lib64)
find_module(slog libalog.so ${ASCEND_COMPILER_DIR})
if(ENABLE_OPEN_SRC)
find_module(slog libalog.so ${ASCEND_COMPILER_DIR})
else()
find_module(slog libascendalog.so ${ASCEND_COMPILER_DIR})
endif()
find_module(static_mmpa libmmpa.a ${ASCEND_COMPILER_DIR})
endif()



Loading…
Cancel
Save