CMakeTestFortranCompiler.cmake 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111
  1. #=============================================================================
  2. # Copyright 2004-2012 Kitware, Inc.
  3. #
  4. # Distributed under the OSI-approved BSD License (the "License");
  5. # see accompanying file Copyright.txt for details.
  6. #
  7. # This software is distributed WITHOUT ANY WARRANTY; without even the
  8. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  9. # See the License for more information.
  10. #=============================================================================
  11. # (To distribute this file outside of CMake, substitute the full
  12. # License text for the above reference.)
  13. if(CMAKE_Fortran_COMPILER_FORCED)
  14. # The compiler configuration was forced by the user.
  15. # Assume the user has configured all compiler information.
  16. set(CMAKE_Fortran_COMPILER_WORKS TRUE)
  17. return()
  18. endif()
  19. include(CMakeTestCompilerCommon)
  20. # Remove any cached result from an older CMake version.
  21. # We now store this in CMakeFortranCompiler.cmake.
  22. unset(CMAKE_Fortran_COMPILER_WORKS CACHE)
  23. # This file is used by EnableLanguage in cmGlobalGenerator to
  24. # determine that that selected Fortran compiler can actually compile
  25. # and link the most basic of programs. If not, a fatal error
  26. # is set and cmake stops processing commands and will not generate
  27. # any makefiles or projects.
  28. if(NOT CMAKE_Fortran_COMPILER_WORKS)
  29. PrintTestCompilerStatus("Fortran" "")
  30. file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f "
  31. PROGRAM TESTFortran
  32. PRINT *, 'Hello'
  33. END
  34. ")
  35. try_compile(CMAKE_Fortran_COMPILER_WORKS ${CMAKE_BINARY_DIR}
  36. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompiler.f
  37. OUTPUT_VARIABLE OUTPUT)
  38. # Move result from cache to normal variable.
  39. set(CMAKE_Fortran_COMPILER_WORKS ${CMAKE_Fortran_COMPILER_WORKS})
  40. unset(CMAKE_Fortran_COMPILER_WORKS CACHE)
  41. set(FORTRAN_TEST_WAS_RUN 1)
  42. endif()
  43. if(NOT CMAKE_Fortran_COMPILER_WORKS)
  44. PrintTestCompilerStatus("Fortran" " -- broken")
  45. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  46. "Determining if the Fortran compiler works failed with "
  47. "the following output:\n${OUTPUT}\n\n")
  48. message(FATAL_ERROR "The Fortran compiler \"${CMAKE_Fortran_COMPILER}\" "
  49. "is not able to compile a simple test program.\nIt fails "
  50. "with the following output:\n ${OUTPUT}\n\n"
  51. "CMake will not be able to correctly generate this project.")
  52. else()
  53. if(FORTRAN_TEST_WAS_RUN)
  54. PrintTestCompilerStatus("Fortran" " -- works")
  55. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  56. "Determining if the Fortran compiler works passed with "
  57. "the following output:\n${OUTPUT}\n\n")
  58. endif()
  59. # Try to identify the ABI and configure it into CMakeFortranCompiler.cmake
  60. include(${CMAKE_ROOT}/Modules/CMakeDetermineCompilerABI.cmake)
  61. CMAKE_DETERMINE_COMPILER_ABI(Fortran ${CMAKE_ROOT}/Modules/CMakeFortranCompilerABI.F)
  62. # Test for Fortran 90 support by using an f90-specific construct.
  63. if(NOT DEFINED CMAKE_Fortran_COMPILER_SUPPORTS_F90)
  64. message(STATUS "Checking whether ${CMAKE_Fortran_COMPILER} supports Fortran 90")
  65. file(WRITE ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompilerF90.f90 "
  66. PROGRAM TESTFortran90
  67. integer stop ; stop = 1 ; do while ( stop .eq. 0 ) ; end do
  68. END PROGRAM TESTFortran90
  69. ")
  70. try_compile(CMAKE_Fortran_COMPILER_SUPPORTS_F90 ${CMAKE_BINARY_DIR}
  71. ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeTmp/testFortranCompilerF90.f90
  72. OUTPUT_VARIABLE OUTPUT)
  73. if(CMAKE_Fortran_COMPILER_SUPPORTS_F90)
  74. message(STATUS "Checking whether ${CMAKE_Fortran_COMPILER} supports Fortran 90 -- yes")
  75. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeOutput.log
  76. "Determining if the Fortran compiler supports Fortran 90 passed with "
  77. "the following output:\n${OUTPUT}\n\n")
  78. set(CMAKE_Fortran_COMPILER_SUPPORTS_F90 1)
  79. else()
  80. message(STATUS "Checking whether ${CMAKE_Fortran_COMPILER} supports Fortran 90 -- no")
  81. file(APPEND ${CMAKE_BINARY_DIR}${CMAKE_FILES_DIRECTORY}/CMakeError.log
  82. "Determining if the Fortran compiler supports Fortran 90 failed with "
  83. "the following output:\n${OUTPUT}\n\n")
  84. set(CMAKE_Fortran_COMPILER_SUPPORTS_F90 0)
  85. endif()
  86. unset(CMAKE_Fortran_COMPILER_SUPPORTS_F90 CACHE)
  87. endif()
  88. # Re-configure to save learned information.
  89. configure_file(
  90. ${CMAKE_ROOT}/Modules/CMakeFortranCompiler.cmake.in
  91. ${CMAKE_PLATFORM_INFO_DIR}/CMakeFortranCompiler.cmake
  92. @ONLY
  93. )
  94. include(${CMAKE_PLATFORM_INFO_DIR}/CMakeFortranCompiler.cmake)
  95. if(CMAKE_Fortran_SIZEOF_DATA_PTR)
  96. foreach(f ${CMAKE_Fortran_ABI_FILES})
  97. include(${f})
  98. endforeach()
  99. unset(CMAKE_Fortran_ABI_FILES)
  100. endif()
  101. endif()