SWDEV-253557 Strip shared lib for release builds

Change-Id: I79608406b3295c762a3781abd455bd63e6893dd4
This commit is contained in:
Reshabh Sharma
2020-10-05 21:05:40 +05:30
committed by Mark Searles
orang tua c5184d61b4
melakukan eac709a8a9
+6
Melihat File
@@ -234,6 +234,12 @@ if (UNIX)
message(STATUS "Found: ${LIBNUMA}")
endif()
endif()
# strip the shared lib for release build
if(CMAKE_BUILD_TYPE STREQUAL "Release" AND ${BUILD_SHARED_LIBS})
add_custom_command(TARGET amdrocclr_static POST_BUILD COMMAND ${CMAKE_STRIP} $<TARGET_FILE_NAME:amdrocclr_static>)
endif()
#comment out as it's not available in cmake 3.5
#if(CMAKE_INSTALL_PREFIX_INITIALIZED_TO_DEFAULT)
if(NOT CMAKE_INSTALL_PREFIX)