SWDEV-253557 Strip shared lib for release builds

Change-Id: I79608406b3295c762a3781abd455bd63e6893dd4


[ROCm/clr commit: eac709a8a9]
This commit is contained in:
Reshabh Sharma
2020-10-05 21:05:40 +05:30
zatwierdzone przez Mark Searles
rodzic 40e6b4c685
commit fe7bf0e7e5
+6
Wyświetl plik
@@ -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)