2005-12-14 21:51:08 +03:00
|
|
|
|
2009-09-28 19:46:51 +04:00
|
|
|
#=============================================================================
|
|
|
|
# Copyright 2004-2009 Kitware, Inc.
|
|
|
|
#
|
|
|
|
# Distributed under the OSI-approved BSD License (the "License");
|
|
|
|
# see accompanying file Copyright.txt for details.
|
|
|
|
#
|
|
|
|
# This software is distributed WITHOUT ANY WARRANTY; without even the
|
|
|
|
# implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
# See the License for more information.
|
|
|
|
#=============================================================================
|
|
|
|
# (To distributed this file outside of CMake, substitute the full
|
|
|
|
# License text for the above reference.)
|
|
|
|
|
2007-05-18 17:16:07 +04:00
|
|
|
# determine the compiler to use for Fortran programs
|
|
|
|
# NOTE, a generator may set CMAKE_Fortran_COMPILER before
|
2004-08-06 22:51:41 +04:00
|
|
|
# loading this file to force a compiler.
|
2007-05-18 17:16:07 +04:00
|
|
|
# use environment variable FC first if defined by user, next use
|
|
|
|
# the cmake variable CMAKE_GENERATOR_FC which can be defined by a generator
|
2004-08-06 22:51:41 +04:00
|
|
|
# as a default compiler
|
2007-05-18 17:16:07 +04:00
|
|
|
|
2004-08-26 22:55:55 +04:00
|
|
|
IF(NOT CMAKE_Fortran_COMPILER)
|
2004-08-06 22:51:41 +04:00
|
|
|
# prefer the environment variable CC
|
|
|
|
IF($ENV{FC} MATCHES ".+")
|
2004-08-26 22:55:55 +04:00
|
|
|
GET_FILENAME_COMPONENT(CMAKE_Fortran_COMPILER_INIT $ENV{FC} PROGRAM PROGRAM_ARGS CMAKE_Fortran_FLAGS_ENV_INIT)
|
2005-07-20 23:44:55 +04:00
|
|
|
IF(CMAKE_Fortran_FLAGS_ENV_INIT)
|
2006-01-25 19:41:05 +03:00
|
|
|
SET(CMAKE_Fortran_COMPILER_ARG1 "${CMAKE_Fortran_FLAGS_ENV_INIT}" CACHE STRING "First argument to Fortran compiler")
|
2005-07-20 23:44:55 +04:00
|
|
|
ENDIF(CMAKE_Fortran_FLAGS_ENV_INIT)
|
2004-08-26 22:55:55 +04:00
|
|
|
IF(EXISTS ${CMAKE_Fortran_COMPILER_INIT})
|
|
|
|
ELSE(EXISTS ${CMAKE_Fortran_COMPILER_INIT})
|
2004-08-06 22:51:41 +04:00
|
|
|
MESSAGE(FATAL_ERROR "Could not find compiler set in environment variable FC:\n$ENV{FC}.")
|
2004-08-26 22:55:55 +04:00
|
|
|
ENDIF(EXISTS ${CMAKE_Fortran_COMPILER_INIT})
|
2004-08-06 22:51:41 +04:00
|
|
|
ENDIF($ENV{FC} MATCHES ".+")
|
2004-08-26 23:50:39 +04:00
|
|
|
|
2004-08-06 22:51:41 +04:00
|
|
|
# next try prefer the compiler specified by the generator
|
|
|
|
IF(CMAKE_GENERATOR_FC)
|
2004-08-26 22:55:55 +04:00
|
|
|
IF(NOT CMAKE_Fortran_COMPILER_INIT)
|
|
|
|
SET(CMAKE_Fortran_COMPILER_INIT ${CMAKE_GENERATOR_FC})
|
|
|
|
ENDIF(NOT CMAKE_Fortran_COMPILER_INIT)
|
2004-08-06 22:51:41 +04:00
|
|
|
ENDIF(CMAKE_GENERATOR_FC)
|
2006-08-29 21:59:15 +04:00
|
|
|
|
|
|
|
# finally list compilers to try
|
|
|
|
IF(CMAKE_Fortran_COMPILER_INIT)
|
|
|
|
SET(CMAKE_Fortran_COMPILER_LIST ${CMAKE_Fortran_COMPILER_INIT})
|
|
|
|
ELSE(CMAKE_Fortran_COMPILER_INIT)
|
2004-08-27 00:34:06 +04:00
|
|
|
# Known compilers:
|
2004-08-26 23:50:39 +04:00
|
|
|
# f77/f90/f95: generic compiler names
|
|
|
|
# g77: GNU Fortran 77 compiler
|
|
|
|
# gfortran: putative GNU Fortran 95+ compiler (in progress)
|
|
|
|
# fort77: native F77 compiler under HP-UX (and some older Crays)
|
|
|
|
# frt: Fujitsu F77 compiler
|
|
|
|
# pgf77/pgf90/pgf95: Portland Group F77/F90/F95 compilers
|
|
|
|
# xlf/xlf90/xlf95: IBM (AIX) F77/F90/F95 compilers
|
|
|
|
# lf95: Lahey-Fujitsu F95 compiler
|
|
|
|
# fl32: Microsoft Fortran 77 "PowerStation" compiler
|
|
|
|
# af77: Apogee F77 compiler for Intergraph hardware running CLIX
|
|
|
|
# epcf90: "Edinburgh Portable Compiler" F90
|
|
|
|
# fort: Compaq (now HP) Fortran 90/95 compiler for Tru64 and Linux/Alpha
|
|
|
|
# ifc: Intel Fortran 95 compiler for Linux/x86
|
|
|
|
# efc: Intel Fortran 95 compiler for IA64
|
2004-08-27 00:34:06 +04:00
|
|
|
#
|
|
|
|
# The order is 95 or newer compilers first, then 90,
|
|
|
|
# then 77 or older compilers, gnu is always last in the group,
|
|
|
|
# so if you paid for a compiler it is picked by default.
|
|
|
|
# NOTE for testing purposes this list is DUPLICATED in
|
|
|
|
# CMake/Source/CMakeLists.txt, IF YOU CHANGE THIS LIST,
|
|
|
|
# PLEASE UPDATE THAT FILE AS WELL!
|
2006-08-29 21:59:15 +04:00
|
|
|
SET(CMAKE_Fortran_COMPILER_LIST
|
2008-11-15 01:45:56 +03:00
|
|
|
ifort ifc efc f95 pgf95 lf95 xlf95 fort gfortran gfortran-4 g95 f90
|
2006-08-29 21:59:15 +04:00
|
|
|
pgf90 xlf90 epcf90 fort77 frt pgf77 xlf fl32 af77 g77 f77
|
|
|
|
)
|
2009-09-10 00:39:47 +04:00
|
|
|
|
|
|
|
# Vendor-specific compiler names.
|
|
|
|
SET(_Fortran_COMPILER_NAMES_GNU gfortran gfortran-4 g95 g77)
|
|
|
|
SET(_Fortran_COMPILER_NAMES_Intel ifort ifc efc)
|
|
|
|
SET(_Fortran_COMPILER_NAMES_PGI pgf95 pgf90 pgf77)
|
|
|
|
SET(_Fortran_COMPILER_NAMES_XL xlf)
|
|
|
|
SET(_Fortran_COMPILER_NAMES_VisualAge xlf95 xlf90 xlf)
|
|
|
|
|
|
|
|
# Prefer vendors matching the C and C++ compilers.
|
|
|
|
SET(CMAKE_Fortran_COMPILER_LIST
|
|
|
|
${_Fortran_COMPILER_NAMES_${CMAKE_C_COMPILER_ID}}
|
|
|
|
${_Fortran_COMPILER_NAMES_${CMAKE_CXX_COMPILER_ID}}
|
|
|
|
${CMAKE_Fortran_COMPILER_LIST})
|
|
|
|
LIST(REMOVE_DUPLICATES CMAKE_Fortran_COMPILER_LIST)
|
2006-08-29 21:59:15 +04:00
|
|
|
ENDIF(CMAKE_Fortran_COMPILER_INIT)
|
2004-08-06 22:51:41 +04:00
|
|
|
|
2009-09-10 00:39:47 +04:00
|
|
|
# Look for directories containing the C and C++ compilers.
|
|
|
|
SET(_Fortran_COMPILER_HINTS)
|
|
|
|
FOREACH(lang C CXX)
|
|
|
|
IF(CMAKE_${lang}_COMPILER AND IS_ABSOLUTE "${CMAKE_${lang}_COMPILER}")
|
|
|
|
GET_FILENAME_COMPONENT(_hint "${CMAKE_${lang}_COMPILER}" PATH)
|
|
|
|
IF(IS_DIRECTORY "${_hint}")
|
|
|
|
LIST(APPEND _Fortran_COMPILER_HINTS "${_hint}")
|
|
|
|
ENDIF()
|
|
|
|
SET(_hint)
|
|
|
|
ENDIF()
|
|
|
|
ENDFOREACH()
|
|
|
|
|
2006-08-29 21:59:15 +04:00
|
|
|
# Find the compiler.
|
2009-09-10 00:39:47 +04:00
|
|
|
IF(_Fortran_COMPILER_HINTS)
|
|
|
|
# Prefer directories containing C and C++ compilers.
|
|
|
|
LIST(REMOVE_DUPLICATES _Fortran_COMPILER_HINTS)
|
|
|
|
FIND_PROGRAM(CMAKE_Fortran_COMPILER
|
|
|
|
NAMES ${CMAKE_Fortran_COMPILER_LIST}
|
|
|
|
PATHS ${_Fortran_COMPILER_HINTS}
|
|
|
|
NO_DEFAULT_PATH
|
|
|
|
DOC "Fortran compiler")
|
|
|
|
ENDIF()
|
2006-08-29 21:59:15 +04:00
|
|
|
FIND_PROGRAM(CMAKE_Fortran_COMPILER NAMES ${CMAKE_Fortran_COMPILER_LIST} DOC "Fortran compiler")
|
|
|
|
IF(CMAKE_Fortran_COMPILER_INIT AND NOT CMAKE_Fortran_COMPILER)
|
|
|
|
SET(CMAKE_Fortran_COMPILER "${CMAKE_Fortran_COMPILER_INIT}" CACHE FILEPATH "Fortran compiler" FORCE)
|
|
|
|
ENDIF(CMAKE_Fortran_COMPILER_INIT AND NOT CMAKE_Fortran_COMPILER)
|
2008-11-15 01:45:56 +03:00
|
|
|
ELSE(NOT CMAKE_Fortran_COMPILER)
|
|
|
|
# we only get here if CMAKE_Fortran_COMPILER was specified using -D or a pre-made CMakeCache.txt
|
|
|
|
# (e.g. via ctest) or set in CMAKE_TOOLCHAIN_FILE
|
|
|
|
# if CMAKE_Fortran_COMPILER is a list of length 2, use the first item as
|
|
|
|
# CMAKE_Fortran_COMPILER and the 2nd one as CMAKE_Fortran_COMPILER_ARG1
|
|
|
|
|
|
|
|
LIST(LENGTH CMAKE_Fortran_COMPILER _CMAKE_Fortran_COMPILER_LIST_LENGTH)
|
|
|
|
IF("${_CMAKE_Fortran_COMPILER_LIST_LENGTH}" EQUAL 2)
|
|
|
|
LIST(GET CMAKE_Fortran_COMPILER 1 CMAKE_Fortran_COMPILER_ARG1)
|
|
|
|
LIST(GET CMAKE_Fortran_COMPILER 0 CMAKE_Fortran_COMPILER)
|
|
|
|
ENDIF("${_CMAKE_Fortran_COMPILER_LIST_LENGTH}" EQUAL 2)
|
|
|
|
|
|
|
|
# if a compiler was specified by the user but without path,
|
|
|
|
# now try to find it with the full path
|
|
|
|
# if it is found, force it into the cache,
|
|
|
|
# if not, don't overwrite the setting (which was given by the user) with "NOTFOUND"
|
|
|
|
# if the C compiler already had a path, reuse it for searching the CXX compiler
|
|
|
|
GET_FILENAME_COMPONENT(_CMAKE_USER_Fortran_COMPILER_PATH "${CMAKE_Fortran_COMPILER}" PATH)
|
|
|
|
IF(NOT _CMAKE_USER_Fortran_COMPILER_PATH)
|
|
|
|
FIND_PROGRAM(CMAKE_Fortran_COMPILER_WITH_PATH NAMES ${CMAKE_Fortran_COMPILER})
|
|
|
|
MARK_AS_ADVANCED(CMAKE_Fortran_COMPILER_WITH_PATH)
|
|
|
|
IF(CMAKE_Fortran_COMPILER_WITH_PATH)
|
|
|
|
SET(CMAKE_Fortran_COMPILER ${CMAKE_Fortran_COMPILER_WITH_PATH}
|
|
|
|
CACHE STRING "Fortran compiler" FORCE)
|
|
|
|
ENDIF(CMAKE_Fortran_COMPILER_WITH_PATH)
|
|
|
|
ENDIF(NOT _CMAKE_USER_Fortran_COMPILER_PATH)
|
2004-08-26 22:55:55 +04:00
|
|
|
ENDIF(NOT CMAKE_Fortran_COMPILER)
|
2004-08-06 22:51:41 +04:00
|
|
|
|
2004-08-26 22:55:55 +04:00
|
|
|
MARK_AS_ADVANCED(CMAKE_Fortran_COMPILER)
|
2004-08-06 22:51:41 +04:00
|
|
|
|
2007-05-03 16:24:32 +04:00
|
|
|
# Build a small source file to identify the compiler.
|
2004-09-15 18:32:28 +04:00
|
|
|
IF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
|
2007-05-03 16:24:32 +04:00
|
|
|
SET(CMAKE_Fortran_COMPILER_ID_RUN 1)
|
|
|
|
SET(CMAKE_Fortran_PLATFORM_ID "Windows")
|
2004-09-15 18:32:28 +04:00
|
|
|
|
2007-05-03 16:24:32 +04:00
|
|
|
# TODO: Set the compiler id. It is probably MSVC but
|
|
|
|
# the user may be using an integrated Intel compiler.
|
|
|
|
# SET(CMAKE_Fortran_COMPILER_ID "MSVC")
|
|
|
|
ENDIF(${CMAKE_GENERATOR} MATCHES "Visual Studio")
|
|
|
|
|
|
|
|
IF(NOT CMAKE_Fortran_COMPILER_ID_RUN)
|
|
|
|
SET(CMAKE_Fortran_COMPILER_ID_RUN 1)
|
|
|
|
|
2008-01-07 18:27:28 +03:00
|
|
|
# Each entry in this list is a set of extra flags to try
|
|
|
|
# adding to the compile line to see if it helps produce
|
|
|
|
# a valid identification executable.
|
|
|
|
SET(CMAKE_Fortran_COMPILER_ID_TEST_FLAGS
|
2008-02-12 01:00:54 +03:00
|
|
|
# Try compiling to an object file only.
|
|
|
|
"-c"
|
|
|
|
|
2008-01-07 18:27:28 +03:00
|
|
|
# Intel on windows does not preprocess by default.
|
|
|
|
"-fpp"
|
|
|
|
)
|
|
|
|
|
2007-05-03 16:24:32 +04:00
|
|
|
# Try to identify the compiler.
|
|
|
|
SET(CMAKE_Fortran_COMPILER_ID)
|
|
|
|
INCLUDE(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerId.cmake)
|
2009-06-25 16:45:19 +04:00
|
|
|
CMAKE_DETERMINE_COMPILER_ID(Fortran FFLAGS CMakeFortranCompilerId.F)
|
2007-05-03 16:24:32 +04:00
|
|
|
|
|
|
|
# Fall back to old is-GNU test.
|
|
|
|
IF(NOT CMAKE_Fortran_COMPILER_ID)
|
|
|
|
EXEC_PROGRAM(${CMAKE_Fortran_COMPILER}
|
|
|
|
ARGS ${CMAKE_Fortran_COMPILER_ID_FLAGS_LIST} -E "\"${CMAKE_ROOT}/Modules/CMakeTestGNU.c\""
|
|
|
|
OUTPUT_VARIABLE CMAKE_COMPILER_OUTPUT RETURN_VALUE CMAKE_COMPILER_RETURN)
|
|
|
|
IF(NOT CMAKE_COMPILER_RETURN)
|
|
|
|
IF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_GNU.*" )
|
|
|
|
SET(CMAKE_Fortran_COMPILER_ID "GNU")
|
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
|
|
|
"Determining if the Fortran compiler is GNU succeeded with "
|
|
|
|
"the following output:\n${CMAKE_COMPILER_OUTPUT}\n\n")
|
|
|
|
ELSE("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_GNU.*" )
|
|
|
|
FILE(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
|
|
|
|
"Determining if the Fortran compiler is GNU failed with "
|
|
|
|
"the following output:\n${CMAKE_COMPILER_OUTPUT}\n\n")
|
|
|
|
ENDIF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_GNU.*" )
|
|
|
|
IF(NOT CMAKE_Fortran_PLATFORM_ID)
|
|
|
|
IF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_MINGW.*" )
|
|
|
|
SET(CMAKE_Fortran_PLATFORM_ID "MinGW")
|
|
|
|
ENDIF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_MINGW.*" )
|
|
|
|
IF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_CYGWIN.*" )
|
|
|
|
SET(CMAKE_Fortran_PLATFORM_ID "Cygwin")
|
|
|
|
ENDIF("${CMAKE_COMPILER_OUTPUT}" MATCHES ".*THIS_IS_CYGWIN.*" )
|
|
|
|
ENDIF(NOT CMAKE_Fortran_PLATFORM_ID)
|
|
|
|
ENDIF(NOT CMAKE_COMPILER_RETURN)
|
|
|
|
ENDIF(NOT CMAKE_Fortran_COMPILER_ID)
|
2004-08-06 22:51:41 +04:00
|
|
|
|
2007-05-03 16:24:32 +04:00
|
|
|
# Set old compiler and platform id variables.
|
|
|
|
IF("${CMAKE_Fortran_COMPILER_ID}" MATCHES "GNU")
|
|
|
|
SET(CMAKE_COMPILER_IS_GNUG77 1)
|
|
|
|
ENDIF("${CMAKE_Fortran_COMPILER_ID}" MATCHES "GNU")
|
|
|
|
IF("${CMAKE_Fortran_PLATFORM_ID}" MATCHES "MinGW")
|
|
|
|
SET(CMAKE_COMPILER_IS_MINGW 1)
|
|
|
|
ELSEIF("${CMAKE_Fortran_PLATFORM_ID}" MATCHES "Cygwin")
|
|
|
|
SET(CMAKE_COMPILER_IS_CYGWIN 1)
|
|
|
|
ENDIF("${CMAKE_Fortran_PLATFORM_ID}" MATCHES "MinGW")
|
|
|
|
ENDIF(NOT CMAKE_Fortran_COMPILER_ID_RUN)
|
2004-08-06 22:51:41 +04:00
|
|
|
|
ENH: merge CMake-CrossCompileBasic to HEAD
-add a RESULT_VARIABLE to INCLUDE()
-add CMAKE_TOOLCHAIN_FILE for specifiying your (potentially crosscompiling) toolchain
-have TRY_RUN() complain if you try to use it in crosscompiling mode (which were compiled but cannot run on this system)
-use CMAKE_EXECUTABLE_SUFFIX in TRY_RUN(), probably TRY_RUN won't be able to
run the executables if they have a different suffix because they are
probably crosscompiled, but nevertheless it should be able to find them
-make several cmake variables presettable by the user: CMAKE_C/CXX_COMPILER, CMAKE_C/CXX_OUTPUT_EXTENSION, CMAKE_SYSTEM_NAME, CMAKE_SYSTEM_INFO_FILE
-support prefix for GNU toolchains (arm-elf-gcc, arm-elf-ar, arm-elf-strip etc.)
-move ranlib on OSX from the file command to a command in executed in cmake_install.cmake
-add support for stripping during install in cmake_install.cmake
-split out cl.cmake from Windows-cl.cmake, first (very incomplete) step to support MS crosscompiling tools
-remove stdio.h from the simple C program which checks if the compiler works, since this may not exist for some embedded platforms
-create a new CMakeFindBinUtils.cmake which collects the search fro ar, ranlib, strip, ld, link, install_name_tool and other tools like these
-add support for CMAKE_FIND_ROOT_PATH for all FIND_XXX commands, which is a
list of directories which will be prepended to all search directories, right
now as a cmake variable, turning it into a global cmake property may need
some more work
-remove cmTestTestHandler::TryExecutable(), it's unused
-split cmFileCommand::HandleInstall() into slightly smaller functions
Alex
2007-05-17 21:20:44 +04:00
|
|
|
INCLUDE(CMakeFindBinUtils)
|
|
|
|
|
2004-08-06 22:51:41 +04:00
|
|
|
# configure variables set in this file for fast reload later on
|
2008-02-04 01:24:50 +03:00
|
|
|
CONFIGURE_FILE(${CMAKE_ROOT}/Modules/CMakeFortranCompiler.cmake.in
|
|
|
|
${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeFortranCompiler.cmake
|
2008-02-04 18:04:23 +03:00
|
|
|
@ONLY IMMEDIATE # IMMEDIATE must be here for compatibility mode <= 2.0
|
|
|
|
)
|
2004-08-26 22:55:55 +04:00
|
|
|
SET(CMAKE_Fortran_COMPILER_ENV_VAR "FC")
|