CheckCCompilerFlag.cmake 2.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  1. #.rst:
  2. # CheckCCompilerFlag
  3. # ------------------
  4. #
  5. # Check whether the C compiler supports a given flag.
  6. #
  7. # CHECK_C_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_c_source_compiles macro and sets
  16. # CMAKE_REQUIRED_DEFINITIONS to <flag>. See help for
  17. # CheckCSourceCompiles for a listing of variables that can otherwise
  18. # modify the build. The result only tells that the compiler does not
  19. # give an error message when it encounters the flag. If the flag has
  20. # any effect or even a specific one is beyond the scope of this module.
  21. #=============================================================================
  22. # Copyright 2006-2011 Kitware, Inc.
  23. # Copyright 2006 Alexander Neundorf <neundorf@kde.org>
  24. # Copyright 2011 Matthias Kretz <kretz@kde.org>
  25. #
  26. # Distributed under the OSI-approved BSD License (the "License");
  27. # see accompanying file Copyright.txt for details.
  28. #
  29. # This software is distributed WITHOUT ANY WARRANTY; without even the
  30. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  31. # See the License for more information.
  32. #=============================================================================
  33. # (To distribute this file outside of CMake, substitute the full
  34. # License text for the above reference.)
  35. include(CheckCSourceCompiles)
  36. include(CMakeCheckCompilerFlagCommonPatterns)
  37. macro (CHECK_C_COMPILER_FLAG _FLAG _RESULT)
  38. set(SAFE_CMAKE_REQUIRED_DEFINITIONS "${CMAKE_REQUIRED_DEFINITIONS}")
  39. set(CMAKE_REQUIRED_DEFINITIONS "${_FLAG}")
  40. # Normalize locale during test compilation.
  41. set(_CheckCCompilerFlag_LOCALE_VARS LC_ALL LC_MESSAGES LANG)
  42. foreach(v ${_CheckCCompilerFlag_LOCALE_VARS})
  43. set(_CheckCCompilerFlag_SAVED_${v} "$ENV{${v}}")
  44. set(ENV{${v}} C)
  45. endforeach()
  46. CHECK_COMPILER_FLAG_COMMON_PATTERNS(_CheckCCompilerFlag_COMMON_PATTERNS)
  47. CHECK_C_SOURCE_COMPILES("int main(void) { return 0; }" ${_RESULT}
  48. # Some compilers do not fail with a bad flag
  49. FAIL_REGEX "command line option .* is valid for .* but not for C" # GNU
  50. ${_CheckCCompilerFlag_COMMON_PATTERNS}
  51. )
  52. foreach(v ${_CheckCCompilerFlag_LOCALE_VARS})
  53. set(ENV{${v}} ${_CheckCCompilerFlag_SAVED_${v}})
  54. unset(_CheckCCompilerFlag_SAVED_${v})
  55. endforeach()
  56. unset(_CheckCCompilerFlag_LOCALE_VARS)
  57. unset(_CheckCCompilerFlag_COMMON_PATTERNS)
  58. set (CMAKE_REQUIRED_DEFINITIONS "${SAFE_CMAKE_REQUIRED_DEFINITIONS}")
  59. endmacro ()