CMakeCheckCompilerFlagCommonPatterns.cmake 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. #=============================================================================
  2. # Copyright 2006-2011 Kitware, Inc.
  3. # Copyright 2006 Alexander Neundorf <neundorf@kde.org>
  4. # Copyright 2011 Matthias Kretz <kretz@kde.org>
  5. # Copyright 2013 Rolf Eike Beer <eike@sf-mail.de>
  6. #
  7. # Distributed under the OSI-approved BSD License (the "License");
  8. # see accompanying file Copyright.txt for details.
  9. #
  10. # This software is distributed WITHOUT ANY WARRANTY; without even the
  11. # implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
  12. # See the License for more information.
  13. #=============================================================================
  14. # (To distribute this file outside of CMake, substitute the full
  15. # License text for the above reference.)
  16. # Do NOT include this module directly into any of your code. It is meant as
  17. # a library for Check*CompilerFlag.cmake modules. It's content may change in
  18. # any way between releases.
  19. macro (CHECK_COMPILER_FLAG_COMMON_PATTERNS _VAR)
  20. set(${_VAR}
  21. FAIL_REGEX "[Uu]nrecogni[sz]ed .*option" # GNU, NAG
  22. FAIL_REGEX "unknown .*option" # Clang
  23. FAIL_REGEX "optimization flag .* not supported" # Clang
  24. FAIL_REGEX "unknown argument ignored" # Clang (cl)
  25. FAIL_REGEX "ignoring unknown option" # MSVC, Intel
  26. FAIL_REGEX "warning D9002" # MSVC, any lang
  27. FAIL_REGEX "option.*not supported" # Intel
  28. FAIL_REGEX "invalid argument .*option" # Intel
  29. FAIL_REGEX "ignoring option .*argument required" # Intel
  30. FAIL_REGEX "ignoring option .*argument is of wrong type" # Intel
  31. FAIL_REGEX "[Uu]nknown option" # HP
  32. FAIL_REGEX "[Ww]arning: [Oo]ption" # SunPro
  33. FAIL_REGEX "command option .* is not recognized" # XL
  34. FAIL_REGEX "command option .* contains an incorrect subargument" # XL
  35. FAIL_REGEX "not supported in this configuration. ignored" # AIX
  36. FAIL_REGEX "File with unknown suffix passed to linker" # PGI
  37. FAIL_REGEX "[Uu]nknown switch" # PGI
  38. FAIL_REGEX "WARNING: unknown flag:" # Open64
  39. FAIL_REGEX "Incorrect command line option:" # Borland
  40. FAIL_REGEX "Warning: illegal option" # SunStudio 12
  41. FAIL_REGEX "[Ww]arning: Invalid suboption" # Fujitsu
  42. )
  43. endmacro ()