Added a little safeguard against GCC optimizer bug to CMakeLists.txt.

This commit is contained in:
Hans-Christian Ebke
2016-09-14 12:11:21 +02:00
parent bfc8506c20
commit 2cb42c9d44

View File

@@ -7,6 +7,14 @@ if("${PROJECT_NAME}" STREQUAL "")
project (OpenMesh) project (OpenMesh)
endif() endif()
if(CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
if(CMAKE_CXX_COMPILER_VERSION VERSION_LESS "6.0" AND CMAKE_CXX_COMPILER_VERSION VERSION_GREATER "4.9" OR CMAKE_CXX_COMPILER_VERSION VERSION_EQUAL "4.9")
message(WARNING "Your version of GCC contains an optimizer bug. Please verify that you do not use -O3!")
string(REPLACE "-O3" "-O2" CMAKE_CXX_FLAGS_RELEASE_NEW "${CMAKE_CXX_FLAGS_RELEASE}")
set(CMAKE_CXX_FLAGS_RELEASE "${CMAKE_CXX_FLAGS_RELEASE_NEW}" CACHE STRING "" FORCE)
endif()
endif()
if ( WIN32 ) if ( WIN32 )
# This is the base directory for windows library search used in the finders we ship. # This is the base directory for windows library search used in the finders we ship.
set(CMAKE_WINDOWS_LIBS_DIR "c:/libs" CACHE STRING "Default Library search dir on windows." ) set(CMAKE_WINDOWS_LIBS_DIR "c:/libs" CACHE STRING "Default Library search dir on windows." )