# ----------------------------------------------------------------------------------------------------------
# Copyright (c) 2025 Huawei Technologies Co., Ltd.
# This program is free software, you can redistribute it and/or modify it under the terms and conditions of
# CANN Open Software License Agreement Version 2.0 (the "License").
# Please refer to the License for details. You may not use this file except in compliance with the License.
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND, EITHER EXPRESS OR IMPLIED,
# INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT, MERCHANTABILITY, OR FITNESS FOR A PARTICULAR PURPOSE.
# See LICENSE in the root of the software repository for the full text of the License.
# ----------------------------------------------------------------------------------------------------------
add_library(aicpu_api STATIC aicpu_dump.cpp)
target_compile_options(aicpu_api PRIVATE
-O2
-std=c++17
-D_FORTIFY_SOURCE=2
-fPIC
-fstack-protector-strong
-fvisibility=hidden
-fvisibility-inlines-hidden
-ftrapv
-Werror
)
if(BUILD_OPEN_PROJECT)
target_include_directories(aicpu_api PRIVATE
${CMAKE_CURRENT_SOURCE_DIR}/../../include
)
target_link_libraries(aicpu_api PRIVATE
c_sec
)
else()
target_include_directories(aicpu_api PRIVATE
${TOP_DIR}/abl/libc_sec/include
${TOP_DIR}/asc/asc-devkit/include
)
endif()
target_compile_definitions(aicpu_api PRIVATE
_GLIBCXX_USE_CXX11_ABI=0
)
install(TARGETS aicpu_api
DESTINATION ${CMAKE_HOST_SYSTEM_PROCESSOR}-linux/lib64/device/lib64 ${INSTALL_OPTIONAL} COMPONENT asc-devkit
)
install(FILES
${ASCENDC_DIR}/include/aicpu_api/aicpu_api.h
DESTINATION ${CMAKE_HOST_SYSTEM_PROCESSOR}-linux/asc/include/aicpu_api ${INSTALL_OPTIONAL} COMPONENT asc-devkit
)