CMakeCheckCompilerFlagCommonPatterns.cmake 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file LICENSE.rst or https://cmake.org/licensing for details.
  3. # Do NOT include this module directly into any of your code. It is meant as
  4. # a library for Check*CompilerFlag.cmake modules. It's content may change in
  5. # any way between releases.
  6. macro (CHECK_COMPILER_FLAG_COMMON_PATTERNS _VAR)
  7. set(${_VAR}
  8. FAIL_REGEX "[Uu]nrecogni[sz]ed .*option" # GNU, NAG, Fujitsu
  9. FAIL_REGEX "switch .* is no longer supported" # GNU
  10. FAIL_REGEX "unknown .*option" # Clang
  11. FAIL_REGEX "optimization flag .* not supported" # Clang
  12. FAIL_REGEX "unknown argument ignored" # Clang (cl)
  13. FAIL_REGEX "ignoring unknown option" # MSVC, Intel
  14. FAIL_REGEX "warning D9002" # MSVC, any lang
  15. FAIL_REGEX "option.*not supported" # Intel
  16. FAIL_REGEX "invalid argument .*option" # Intel
  17. FAIL_REGEX "ignoring option .*argument required" # Intel
  18. FAIL_REGEX "ignoring option .*argument is of wrong type" # Intel
  19. # noqa: spellcheck off
  20. FAIL_REGEX "[Uu]nknown option" # HP
  21. # noqa: spellcheck on
  22. FAIL_REGEX "[Ww]arning: [Oo]ption" # SunPro
  23. FAIL_REGEX "command option .* is not recognized" # XL
  24. FAIL_REGEX "command option .* contains an incorrect subargument" # XL
  25. FAIL_REGEX "Option .* is not recognized. Option will be ignored." # XL
  26. FAIL_REGEX "not supported in this configuration. ignored" # AIX
  27. FAIL_REGEX "File with unknown suffix passed to linker" # PGI
  28. # noqa: spellcheck off
  29. FAIL_REGEX "[Uu]nknown switch" # PGI
  30. # noqa: spellcheck on
  31. FAIL_REGEX "WARNING: unknown flag:" # Open64
  32. FAIL_REGEX "Incorrect command line option:" # Borland
  33. FAIL_REGEX "Warning: illegal option" # SunStudio 12
  34. FAIL_REGEX "[Ww]arning: Invalid suboption" # Fujitsu
  35. FAIL_REGEX "An invalid option .* appears on the command line" # Cray
  36. FAIL_REGEX "WARNING: invalid compiler option" # TI armcl
  37. )
  38. endmacro ()