mirror of
https://github.com/Kitware/CMake.git
synced 2026-01-04 04:40:56 -06:00
The XL Fortran compiler's `-qmoddir=` flag sets the module output directory but does not add the directory to the search path for using modules. This is inconsistent with other compilers like the GNU Fortran compiler's `-J` flag that does both. In order to make these consistent, add the module output directory with a `-I` flag on the XL Fortran compiler so that it will be searched when using modules too. This fixes our `FortranModules` test's coverage of submodules on Ninja + XL. That test places module files in a subdirectory that with Ninja is not the current working directory when the compiler runs. Fixes: #20400
26 lines
1.0 KiB
CMake
26 lines
1.0 KiB
CMake
include(Compiler/XL)
|
|
__compiler_xl(Fortran)
|
|
|
|
set(CMAKE_Fortran_SUBMODULE_SEP "_")
|
|
set(CMAKE_Fortran_SUBMODULE_EXT ".smod")
|
|
|
|
set(CMAKE_Fortran_FORMAT_FIXED_FLAG "-qfixed") # [=<right_margin>]
|
|
set(CMAKE_Fortran_FORMAT_FREE_FLAG "-qfree") # [=f90|ibm]
|
|
|
|
set(CMAKE_Fortran_MODDIR_FLAG "-qmoddir=")
|
|
set(CMAKE_Fortran_MODDIR_INCLUDE_FLAG "-I") # -qmoddir= does not affect search path
|
|
|
|
set(CMAKE_Fortran_DEFINE_FLAG "-WF,-D")
|
|
|
|
# -qthreaded = Ensures that all optimizations will be thread-safe
|
|
# -qhalt=e = Halt on error messages (rather than just severe errors)
|
|
string(APPEND CMAKE_Fortran_FLAGS_INIT " -qthreaded -qhalt=e")
|
|
|
|
# xlf: 1501-214 (W) command option E reserved for future use - ignored
|
|
set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE)
|
|
set(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE)
|
|
|
|
set(CMAKE_Fortran_PREPROCESS_SOURCE
|
|
"<CMAKE_Fortran_COMPILER> <DEFINES> <INCLUDES> <FLAGS> -qpreprocess -qnoobject -qsuppress=1517-020 -tF -B \"${CMAKE_CURRENT_LIST_DIR}/XL-Fortran/\" -WF,--cpp,\"${CMAKE_Fortran_XL_CPP}\",--out,<PREPROCESSED_SOURCE> <SOURCE>"
|
|
)
|