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