summaryrefslogtreecommitdiffstats
path: root/Modules/CMakeDetermineFortranCompiler.cmake
diff options
context:
space:
mode:
authorBrad King <brad.king@kitware.com>2008-02-11 22:00:54 (GMT)
committerBrad King <brad.king@kitware.com>2008-02-11 22:00:54 (GMT)
commita75079d9e08c0325a0165f2dbfc10e5c1fa61eec (patch)
treed93267be4ab59d4e4881faa25f7ae1094489cfcc /Modules/CMakeDetermineFortranCompiler.cmake
parent3fdf141197210532446d345c482303d0ffac13a1 (diff)
downloadCMake-a75079d9e08c0325a0165f2dbfc10e5c1fa61eec.zip
CMake-a75079d9e08c0325a0165f2dbfc10e5c1fa61eec.tar.gz
CMake-a75079d9e08c0325a0165f2dbfc10e5c1fa61eec.tar.bz2
ENH: When detecting the compiler id try compiling only to an object file.
Diffstat (limited to 'Modules/CMakeDetermineFortranCompiler.cmake')
-rw-r--r--Modules/CMakeDetermineFortranCompiler.cmake3
1 files changed, 3 insertions, 0 deletions
diff --git a/Modules/CMakeDetermineFortranCompiler.cmake b/Modules/CMakeDetermineFortranCompiler.cmake
index bb80e6f..1f2ce80 100644
--- a/Modules/CMakeDetermineFortranCompiler.cmake
+++ b/Modules/CMakeDetermineFortranCompiler.cmake
@@ -84,6 +84,9 @@ IF(NOT CMAKE_Fortran_COMPILER_ID_RUN)
# adding to the compile line to see if it helps produce
# a valid identification executable.
SET(CMAKE_Fortran_COMPILER_ID_TEST_FLAGS
+ # Try compiling to an object file only.
+ "-c"
+
# Intel on windows does not preprocess by default.
"-fpp"
)