1
0
mirror of https://git.dev.opencascade.org/repos/occt.git synced 2025-04-04 18:06:22 +03:00

0026911: Configuration, CMake - strips symbol information from the binary in release configuration if the compiler is a variant of gcc

add strip flag when the compiler is a variant of gcc
This commit is contained in:
ibs 2015-11-21 13:46:04 +03:00 committed by bugmaster
parent a082e7d07b
commit 4d8eca1dce

View File

@ -98,7 +98,7 @@ if (DEFINED CMAKE_COMPILER_IS_GNUCXX OR "x${CMAKE_CXX_COMPILER_ID}" STREQUAL "xC
endif()
# Optimize size of binaries
if (NOT WIN32 AND NOT APPLE)
if (CMAKE_COMPILER_IS_GNUCC OR CMAKE_COMPILER_IS_GNUCXX OR MINGW)
set (CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE} -s")
set (CMAKE_C_FLAGS_RELEASE "${CMAKE_C_FLAGS_RELEASE} -s")
endif()