Browse Source

Merge pull request #1205 from AMDmi3/fix-cpp-lib

Limit tampering with standard C++ library to Linux
pull/1212/head
orignal 6 years ago committed by GitHub
parent
commit
c3c2550f17
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      build/CMakeLists.txt

4
build/CMakeLists.txt

@ -202,9 +202,11 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU") @@ -202,9 +202,11 @@ if (CMAKE_CXX_COMPILER_ID STREQUAL "GNU")
endif ()
elseif (CMAKE_CXX_COMPILER_ID STREQUAL "Clang")
# more tweaks
if (NOT (MSVC OR MSYS OR APPLE))
if (LINUX)
set (CMAKE_REQUIRED_FLAGS "${CMAKE_REQUIRED_FLAGS} -stdlib=libstdc++" ) # required for <atomic>
list(APPEND CMAKE_REQUIRED_LIBRARIES "stdc++") # required to link with -stdlib=libstdc++
endif()
if (NOT (MSVC OR MSYS OR APPLE))
set (CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -Wno-unused-const-variable -Wno-overloaded-virtual -Wno-c99-extensions" )
endif()
endif ()

Loading…
Cancel
Save