CheckCXXCompilerFlag.cmake 2.5 KB

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