diff options
author | Stephen Kelly <steveire@gmail.com> | 2014-05-06 19:31:30 (GMT) |
---|---|---|
committer | Stephen Kelly <steveire@gmail.com> | 2014-05-07 10:16:14 (GMT) |
commit | c4f4dac2d550f0a8a44530187eac2ad03191c981 (patch) | |
tree | 00c954d21fdcb6ec04cc0fce4cdeb13d45f9cb51 /Modules | |
parent | 5bb7ce724c8b93d390adb17ec0eb7970520ed114 (diff) | |
download | CMake-c4f4dac2d550f0a8a44530187eac2ad03191c981.zip CMake-c4f4dac2d550f0a8a44530187eac2ad03191c981.tar.gz CMake-c4f4dac2d550f0a8a44530187eac2ad03191c981.tar.bz2 |
Project: Fix exit-on-error with compile feature tests.
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Compiler/GNU-CXX.cmake | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/Modules/Compiler/GNU-CXX.cmake b/Modules/Compiler/GNU-CXX.cmake index 6ec3958..7464525 100644 --- a/Modules/Compiler/GNU-CXX.cmake +++ b/Modules/Compiler/GNU-CXX.cmake @@ -27,14 +27,13 @@ endif() macro(cmake_record_cxx_compile_features) macro(_get_gcc_features std_version list) record_compiler_features(CXX "-std=${std_version}" ${list}) - if (NOT _result EQUAL 0) - return() - endif() endmacro() if (UNIX AND NOT APPLE AND NOT CMAKE_CXX_COMPILER_VERSION VERSION_LESS 4.8) _get_gcc_features(c++11 CMAKE_CXX11_COMPILE_FEATURES) - _get_gcc_features(c++98 CMAKE_CXX98_COMPILE_FEATURES) + if (_result EQUAL 0) + _get_gcc_features(c++98 CMAKE_CXX98_COMPILE_FEATURES) + endif() else() set(_result 0) endif() |