]> https://gitweb.dealii.org/ - dealii.git/commitdiff
CMake: properly reset CMAKE_REQUIRED_* variables in enable_if_supported()
authorMatthias Maier <tamiko@43-1.org>
Fri, 14 Mar 2025 22:16:48 +0000 (17:16 -0500)
committerMatthias Maier <tamiko@43-1.org>
Fri, 14 Mar 2025 22:16:48 +0000 (17:16 -0500)
cmake/macros/macro_enable_if_supported.cmake

index c51205e270b3421b84055d42fa424f03dd614195..0bca643405ceff3c340df782a604c4730f1516e3 100644 (file)
 ## ------------------------------------------------------------------------
 
 #
-# Tests whether the cxx compiler understands a flag.
-# If so, add it to 'variable'.
+# Tests whether the cxx compiler understands a flag. If so, add it to
+# 'variable'.
+#
+# Note: This macro will reset the CMAKE_REQUIRED_* variables.
 #
 # Usage:
 #     enable_if_supported(variable flag)
 #
 
 macro(enable_if_supported _variable _flag)
-  # First check if we can use -Werror
-  CHECK_CXX_COMPILER_FLAG("-Werror" DEAL_II_HAVE_FLAG_Werror)
-
-  string(STRIP "${_flag}" _flag_stripped)
+  reset_cmake_required()
 
+  #
+  # Add -Werror if available:
+  #
+  CHECK_CXX_COMPILER_FLAG("-Werror" DEAL_II_HAVE_FLAG_Werror)
   if(DEAL_II_HAVE_FLAG_Werror)
-    set(CMAKE_REQUIRED_FLAGS "-Werror")
+    string(STRIP "${CMAKE_REQUIRED_FLAGS} -Werror" CMAKE_REQUIRED_FLAGS)
   endif()
 
   #
@@ -37,6 +40,7 @@ macro(enable_if_supported _variable _flag)
   # compilation unit.
   # Therefore we invert the test for -Wno-... flags:
   #
+  string(STRIP "${_flag}" _flag_stripped)
   set(_flag_sanitized "${_flag_stripped}")
   if(CMAKE_CXX_COMPILER_ID MATCHES "GNU")
     string(REPLACE "-Wno-" "-W" _flag_sanitized "${_flag_stripped}")
@@ -54,5 +58,5 @@ macro(enable_if_supported _variable _flag)
     endif()
   endif()
 
-  unset(CMAKE_REQUIRED_FLAGS)
+  reset_cmake_required()
 endmacro()

In the beginning the Universe was created. This has made a lot of people very angry and has been widely regarded as a bad move.

Douglas Adams


Typeset in Trocchi and Trocchi Bold Sans Serif.