From 1174173d6c53ab2a28a9752fefdbba93aea23277 Mon Sep 17 00:00:00 2001 From: Matthias Maier Date: Fri, 14 Mar 2025 17:19:31 -0500 Subject: [PATCH] CMake: bugfix: reset CMAKE_REQUIRED_* variables prior to detecting CXX features --- cmake/checks/check_01_cxx_features.cmake | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) 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 -- 2.39.5