summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2022-05-16 11:19:29 -0400
committerBrad King <brad.king@kitware.com>2022-05-16 11:19:29 -0400
commit4a9e2a15720fb1ddf1fadff07aec9c33b764c1ae (patch)
tree7abb9acd935026b94d887d94d6e7ccf06c87140e
parentd478dda0ebef377638636dab64bc062095426279 (diff)
parentcb616d43d6f0912f3b4ab61d210cebe42dbfffb3 (diff)
downloadcmake-4a9e2a15720fb1ddf1fadff07aec9c33b764c1ae.tar.gz
Merge branch 'FortranCInterface-gcc12' into release-3.22
Merge-request: !7266
-rw-r--r--Modules/FortranCInterface/CMakeLists.txt3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/FortranCInterface/CMakeLists.txt b/Modules/FortranCInterface/CMakeLists.txt
index ce0bc10c8e..fb35ff0a6d 100644
--- a/Modules/FortranCInterface/CMakeLists.txt
+++ b/Modules/FortranCInterface/CMakeLists.txt
@@ -112,6 +112,9 @@ if(CMAKE_Fortran_COMPILER_ID STREQUAL "GNU" AND
CMAKE_Fortran_COMPILER_VERSION VERSION_GREATER_EQUAL 12)
target_compile_options(FortranCInterface PRIVATE "-fno-lto")
target_compile_options(myfort PRIVATE "-flto=auto" "-ffat-lto-objects")
+endif()
+if(CMAKE_C_COMPILER_ID STREQUAL "GNU" AND
+ CMAKE_C_COMPILER_VERSION VERSION_GREATER_EQUAL 12)
target_compile_options(symbols PRIVATE "-flto=auto" "-ffat-lto-objects")
endif()