cmake: Do not strip targets in the release build

Distributions want to generate debuginfo packages, do not strip them! If
you want to do it during installation use 'make install/strip'!

Change-Id: I3983af24ce4f4ddb189ede0ed0820dfee83b6280
此提交包含在:
Andreas Schneider
2018-09-25 18:47:57 +02:00
提交者 Kent Russell
父節點 b8a1331763
當前提交 8ccfa4c75c
-5
查看文件
@@ -113,11 +113,6 @@ target_link_libraries ( ${HSAKMT_TARGET}
pthread rt numa ${PC_LIBPCI_LIBRARIES}
)
## If the library is a release, strip the target library
if ( "${CMAKE_BUILD_TYPE}" STREQUAL Release )
add_custom_command ( TARGET ${HSAKMT_TARGET} POST_BUILD COMMAND ${CMAKE_STRIP} ${HSAKMT_COMPONENT}.so )
endif ()
## Define default variable and variables for the optional build target hsakmt-dev
set ( SOURCE_DIR ${CMAKE_CURRENT_SOURCE_DIR} CACHE STRING "Location of hsakmt source code." )
set ( CMAKE_INSTALL_PREFIX "/opt/rocm" CACHE STRING "Default installation directory." )