From: Matthias Maier Date: Fri, 14 Mar 2025 22:19:31 +0000 (-0500) Subject: CMake: bugfix: reset CMAKE_REQUIRED_* variables prior to detecting CXX features X-Git-Url: https://gitweb.dealii.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1174173d6c53ab2a28a9752fefdbba93aea23277;p=dealii.git CMake: bugfix: reset CMAKE_REQUIRED_* variables prior to detecting CXX features --- diff --git a/cmake/checks/check_01_cxx_features.cmake b/cmake/checks/check_01_cxx_features.cmake index 9b0a65c38c..30e60ef846 100644 --- a/cmake/checks/check_01_cxx_features.cmake +++ b/cmake/checks/check_01_cxx_features.cmake @@ -36,7 +36,6 @@ # # ######################################################################## - # # We need compiler flags specified in ${DEAL_II_CXX_FLAGS} for all the # tests. Create a small macro to easily set CMAKE_REQUIRED_FLAGS @@ -413,6 +412,12 @@ else() enable_if_supported(_werror_flag "-Werror") enable_if_supported(_werror_flag "-Wno-unused-command-line-argument") endif() + +# +# We need to reset CMAKE_REQUIRED_* variables again after the above call to +# enable_if_supported() +# +_set_up_cmake_required() add_flags(CMAKE_REQUIRED_FLAGS "${_werror_flag}") unset_if_changed(CHECK_CXX_FEATURES_FLAGS_SAVED