diff options
author | Brad King <brad.king@kitware.com> | 2014-12-23 15:14:12 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2014-12-23 15:15:27 (GMT) |
commit | be1109d811a637f03328d97a3cacfb9dad273744 (patch) | |
tree | a6b4ecc076ff9f6394a0c8c73ca139691ae27890 /Modules | |
parent | 99f682b0fd2d01c57a365442b472ed628bdb7a9b (diff) | |
download | CMake-be1109d811a637f03328d97a3cacfb9dad273744.zip CMake-be1109d811a637f03328d97a3cacfb9dad273744.tar.gz CMake-be1109d811a637f03328d97a3cacfb9dad273744.tar.bz2 |
Oracle/Sun: Fix Fortran preprocessor rule generation
The SunPro Fortran compiler uses "-F" instead of "-E" to request
preprocessing. The output does not go to stdout so use "-o" to
specify the output file.
This fixes the guess originally made by commit b6b37e30 (Makefile: Add
assembly and preprocessed targets for Fortran, 2014-11-05).
Diffstat (limited to 'Modules')
-rw-r--r-- | Modules/Compiler/SunPro-Fortran.cmake | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Modules/Compiler/SunPro-Fortran.cmake b/Modules/Compiler/SunPro-Fortran.cmake index c38d5a5..e4db1e8 100644 --- a/Modules/Compiler/SunPro-Fortran.cmake +++ b/Modules/Compiler/SunPro-Fortran.cmake @@ -17,5 +17,5 @@ set(CMAKE_Fortran_FLAGS_RELWITHDEBINFO_INIT "-g -xO2 -DNDEBUG") set(CMAKE_Fortran_MODDIR_FLAG "-moddir=") set(CMAKE_Fortran_MODPATH_FLAG "-M") -set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <FLAGS> -E <SOURCE> > <PREPROCESSED_SOURCE>") +set(CMAKE_Fortran_CREATE_PREPROCESSED_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <FLAGS> -F <SOURCE> -o <PREPROCESSED_SOURCE>") set(CMAKE_Fortran_CREATE_ASSEMBLY_SOURCE "<CMAKE_Fortran_COMPILER> <DEFINES> <FLAGS> -S <SOURCE> -o <ASSEMBLY_SOURCE>") |