CMakeCheckCompilerFlagCommonPatterns.cmake 2.0 KB

1234567891011121314151617181920212223242526272829303132333435
  1. # Distributed under the OSI-approved BSD 3-Clause License. See accompanying
  2. # file Copyright.txt 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
  9. FAIL_REGEX "unknown .*option" # Clang
  10. FAIL_REGEX "optimization flag .* not supported" # Clang
  11. FAIL_REGEX "unknown argument ignored" # Clang (cl)
  12. FAIL_REGEX "ignoring unknown option" # MSVC, Intel
  13. FAIL_REGEX "warning D9002" # MSVC, any lang
  14. FAIL_REGEX "option.*not supported" # Intel
  15. FAIL_REGEX "invalid argument .*option" # Intel
  16. FAIL_REGEX "ignoring option .*argument required" # Intel
  17. FAIL_REGEX "ignoring option .*argument is of wrong type" # Intel
  18. FAIL_REGEX "[Uu]nknown option" # HP
  19. FAIL_REGEX "[Ww]arning: [Oo]ption" # SunPro
  20. FAIL_REGEX "command option .* is not recognized" # XL
  21. FAIL_REGEX "command option .* contains an incorrect subargument" # XL
  22. FAIL_REGEX "Option .* is not recognized. Option will be ignored." # XL
  23. FAIL_REGEX "not supported in this configuration. ignored" # AIX
  24. FAIL_REGEX "File with unknown suffix passed to linker" # PGI
  25. FAIL_REGEX "[Uu]nknown switch" # PGI
  26. FAIL_REGEX "WARNING: unknown flag:" # Open64
  27. FAIL_REGEX "Incorrect command line option:" # Borland
  28. FAIL_REGEX "Warning: illegal option" # SunStudio 12
  29. FAIL_REGEX "[Ww]arning: Invalid suboption" # Fujitsu
  30. FAIL_REGEX "An invalid option .* appears on the command line" # Cray
  31. )
  32. endmacro ()