summaryrefslogtreecommitdiffstats
path: root/Modules
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2021-06-25 11:23:31 (GMT)
committerKitware Robot <kwrobot@kitware.com>2021-06-25 11:23:58 (GMT)
commit5840c3eab7d9d15a64830fb5d6f5abaacde2033a (patch)
tree1c1d93232dac6829d2a0ce4ef1822a11ec50dc37 /Modules
parentc8e0bd8bbe8b4e2d146cfac302680e31202141e9 (diff)
parent96e362fdc9c6b138461919c96ef5e5a712dad8fb (diff)
downloadCMake-5840c3eab7d9d15a64830fb5d6f5abaacde2033a.zip
CMake-5840c3eab7d9d15a64830fb5d6f5abaacde2033a.tar.gz
CMake-5840c3eab7d9d15a64830fb5d6f5abaacde2033a.tar.bz2
Merge topic 'fujitsu-ipo'
96e362fdc9 Fujitsu: Add IPO support for Fortran Acked-by: Kitware Robot <kwrobot@kitware.com> Merge-request: !6261
Diffstat (limited to 'Modules')
-rw-r--r--Modules/Compiler/Fujitsu.cmake10
1 files changed, 10 insertions, 0 deletions
diff --git a/Modules/Compiler/Fujitsu.cmake b/Modules/Compiler/Fujitsu.cmake
index 13bc57c..78495cb 100644
--- a/Modules/Compiler/Fujitsu.cmake
+++ b/Modules/Compiler/Fujitsu.cmake
@@ -26,6 +26,16 @@ macro(__compiler_fujitsu lang)
set(CMAKE_${lang}_LINKER_WRAPPER_FLAG "-Wl,")
set(CMAKE_${lang}_LINKER_WRAPPER_FLAG_SEP ",")
+ # IPO flag
+ set(_CMAKE_${lang}_IPO_SUPPORTED_BY_CMAKE YES)
+ if ("${lang}" STREQUAL "Fortran")
+ # Supported by Fortran compiler only
+ set(_CMAKE_${lang}_IPO_MAY_BE_SUPPORTED_BY_COMPILER YES)
+ set(CMAKE_${lang}_COMPILE_OPTIONS_IPO "-Klto")
+ else()
+ set(_CMAKE_${lang}_IPO_MAY_BE_SUPPORTED_BY_COMPILER NO)
+ endif()
+
# How to actually call the compiler
set(CMAKE_${lang}_CREATE_PREPROCESSED_SOURCE
"<CMAKE_${lang}_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -E $<$<COMPILE_LANGUAGE:Fortran>:-Cpp> <SOURCE> > <PREPROCESSED_SOURCE>")