CheckFortranCompilerFlag.cmake 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #.rst:
  2. # CheckFortranCompilerFlag
  3. # ------------------------
  4. #
  5. # Check whether the Fortran compiler supports a given flag.
  6. #
  7. # CHECK_Fortran_COMPILER_FLAG(<flag> <var>)
  8. #
  9. # ::
  10. #
  11. # <flag> - the compiler flag
  12. # <var> - variable to store the result
  13. # Will be created as an internal cache variable.
  14. #
  15. # This internally calls the check_fortran_source_compiles macro and
  16. # sets CMAKE_REQUIRED_DEFINITIONS to <flag>. See help for
  17. # CheckFortranSourceCompiles for a listing of variables that can
  18. # otherwise modify the build. The result only tells that the compiler
  19. # does not give an error message when it encounters the flag. If the
  20. # flag has any effect or even a specific one is beyond the scope of
  21. # this module.
  22. #=============================================================================
  23. # Copyright 2015 Nicolas Bock <nicolasbock@gmail.com>
  24. # Copyright 2006-2011 Kitware, Inc.
  25. # Copyright 2006 Alexander Neundorf <neundorf@kde.org>
  26. # Copyright 2011 Matthias Kretz <kretz@kde.org>
  27. #
  28. # Distributed under the OSI-approved BSD License (the "License");
  29. # see accompanying file Copyright.txt for details.
  30. #
  31. # This software is distributed WITHOUT ANY WARRANTY; without even the
  32. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  33. # See the License for more information.
  34. #=============================================================================
  35. # (To distribute this file outside of CMake, substitute the full
  36. # License text for the above reference.)
  37. include(CheckFortranSourceCompiles)
  38. include(CMakeCheckCompilerFlagCommonPatterns)
  39. macro (CHECK_Fortran_COMPILER_FLAG _FLAG _RESULT)
  40. set(SAFE_CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS}")
  41. set(CMAKE_REQUIRED_DEFINITIONS "${_FLAG}")
  42. # Normalize locale during test compilation.
  43. set(_CheckFortranCompilerFlag_LOCALE_VARS LC_ALL LC_MESSAGES LANG)
  44. foreach(v ${_CheckFortranCompilerFlag_LOCALE_VARS})
  45. set(_CheckFortranCompilerFlag_SAVED_${v} "$ENV{${v}}")
  46. set(ENV{${v}} C)
  47. endforeach()
  48. CHECK_COMPILER_FLAG_COMMON_PATTERNS(_CheckFortranCompilerFlag_COMMON_PATTERNS)
  49. CHECK_Fortran_SOURCE_COMPILES(" program test\n stop\n end program" ${_RESULT}
  50. # Some compilers do not fail with a bad flag
  51. FAIL_REGEX "command line option .* is valid for .* but not for Fortran" # GNU
  52. ${_CheckFortranCompilerFlag_COMMON_PATTERNS}
  53. )
  54. foreach(v ${_CheckFortranCompilerFlag_LOCALE_VARS})
  55. set(ENV{${v}} ${_CheckFortranCompilerFlag_SAVED_${v}})
  56. unset(_CheckFortranCompilerFlag_SAVED_${v})
  57. endforeach()
  58. unset(_CheckFortranCompilerFlag_LOCALE_VARS)
  59. unset(_CheckFortranCompilerFlag_COMMON_PATTERNS)
  60. set (CMAKE_REQUIRED_DEFINITIONS "${SAFE_CMAKE_REQUIRED_DEFINITIONS}")
  61. endmacro ()