From 8ccfa4c75c366cb8271f97fb6e43cb4029839602 Mon Sep 17 00:00:00 2001 From: Andreas Schneider Date: Tue, 25 Sep 2018 18:47:57 +0200 Subject: [PATCH] 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 --- CMakeLists.txt | 5 ----- 1 file changed, 5 deletions(-) diff --git a/CMakeLists.txt b/CMakeLists.txt index 59a29cea8f..33b0f26779 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -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." )