]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - contrib/llvm/tools/clang/include/clang/Basic/DiagnosticDriverKinds.td
Import Annapurna Labs Alpine HAL to sys/contrib/
[FreeBSD/FreeBSD.git] / contrib / llvm / tools / clang / include / clang / Basic / DiagnosticDriverKinds.td
1 //==--- DiagnosticDriverKinds.td - libdriver diagnostics ------------------===//
2 //
3 //                     The LLVM Compiler Infrastructure
4 //
5 // This file is distributed under the University of Illinois Open Source
6 // License. See LICENSE.TXT for details.
7 //
8 //===----------------------------------------------------------------------===//
9
10 let Component = "Driver" in {
11
12 def err_drv_no_such_file : Error<"no such file or directory: '%0'">;
13 def err_drv_unsupported_opt : Error<"unsupported option '%0'">;
14 def err_drv_unsupported_opt_for_target : Error<
15   "unsupported option '%0' for target '%1'">;
16 def err_drv_unsupported_option_argument : Error<
17   "unsupported argument '%1' to option '%0'">;
18 def err_drv_unknown_stdin_type : Error<
19   "-E or -x required when input is from standard input">;
20 def err_drv_unknown_stdin_type_clang_cl : Error<
21   "use /Tc or /Tp to set input type for standard input">;
22 def err_drv_unknown_language : Error<"language not recognized: '%0'">;
23 def err_drv_invalid_arch_name : Error<
24   "invalid arch name '%0'">;
25 def err_drv_invalid_thread_model_for_target : Error<
26   "invalid thread model '%0' in '%1' for this target">;
27 def err_drv_invalid_linker_name : Error<
28   "invalid linker name in argument '%0'">;
29 def err_drv_invalid_rtlib_name : Error<
30   "invalid runtime library name in argument '%0'">;
31 def err_drv_unsupported_rtlib_for_platform : Error<
32   "unsupported runtime library '%0' for platform '%1'">;
33 def err_drv_invalid_stdlib_name : Error<
34   "invalid library name in argument '%0'">;
35 def err_drv_invalid_output_with_multiple_archs : Error<
36   "cannot use '%0' output with multiple -arch options">;
37 def err_drv_no_input_files : Error<"no input files">;
38 def err_drv_use_of_Z_option : Error<
39   "unsupported use of internal gcc -Z option '%0'">;
40 def err_drv_output_argument_with_multiple_files : Error<
41   "cannot specify -o when generating multiple output files">;
42 def err_drv_out_file_argument_with_multiple_sources : Error<
43   "cannot specify '%0%1' when compiling multiple source files">;
44 def err_no_external_assembler : Error<
45   "there is no external assembler that can be used on this platform">;
46 def err_drv_unable_to_remove_file : Error<
47   "unable to remove file: %0">;
48 def err_drv_command_failure : Error<
49   "unable to execute command: %0">;
50 def err_drv_invalid_darwin_version : Error<
51   "invalid Darwin version number: %0">;
52 def err_drv_missing_argument : Error<
53   "argument to '%0' is missing (expected %1 value%s1)">;
54 def err_drv_invalid_Xarch_argument_with_args : Error<
55   "invalid Xarch argument: '%0', options requiring arguments are unsupported">;
56 def err_drv_invalid_Xarch_argument_isdriver : Error<
57   "invalid Xarch argument: '%0', cannot change driver behavior inside Xarch argument">;
58 def err_drv_argument_only_allowed_with : Error<
59   "invalid argument '%0' only allowed with '%1'">;
60 def err_drv_argument_not_allowed_with : Error<
61   "invalid argument '%0' not allowed with '%1'">;
62 def err_drv_invalid_version_number : Error<
63   "invalid version number in '%0'">;
64 def err_drv_no_linker_llvm_support : Error<
65   "'%0': unable to pass LLVM bit-code files to linker">;
66 def err_drv_no_ast_support : Error<
67   "'%0': unable to use AST files with this tool">;
68 def err_drv_no_module_support : Error<
69   "'%0': unable to use module files with this tool">;
70 def err_drv_clang_unsupported : Error<
71   "the clang compiler does not support '%0'">;
72 def err_drv_clang_unsupported_per_platform : Error<
73   "the clang compiler does not support '%0' on this platform">;
74 def err_drv_clang_unsupported_opt_cxx_darwin_i386 : Error<
75   "the clang compiler does not support '%0' for C++ on Darwin/i386">;
76 def err_drv_command_failed : Error<
77   "%0 command failed with exit code %1 (use -v to see invocation)">;
78 def err_drv_command_signalled : Error<
79   "%0 command failed due to signal (use -v to see invocation)">;
80 def err_drv_force_crash : Error<
81   "failing because environment variable '%0' is set">;
82 def err_drv_invalid_mfloat_abi : Error<
83   "invalid float ABI '%0'">;
84 def err_drv_invalid_libcxx_deployment : Error<
85   "invalid deployment target for -stdlib=libc++ (requires %0 or later)">;
86 def err_drv_malformed_sanitizer_blacklist : Error<
87   "malformed sanitizer blacklist: '%0'">;
88
89 def err_target_unsupported_arch
90   : Error<"the target architecture '%0' is not supported by the target '%1'">;
91
92 def err_drv_I_dash_not_supported : Error<
93   "'%0' not supported, please use -iquote instead">;
94 def err_drv_unknown_argument : Error<"unknown argument: '%0'">;
95 def err_drv_invalid_value : Error<"invalid value '%1' in '%0'">;
96 def err_drv_invalid_int_value : Error<"invalid integral value '%1' in '%0'">;
97 def err_drv_invalid_remap_file : Error<
98     "invalid option '%0' not of the form <from-file>;<to-file>">;
99 def err_drv_invalid_gcc_output_type : Error<
100     "invalid output type '%0' for use with gcc tool">;
101 def err_drv_cc_print_options_failure : Error<
102     "unable to open CC_PRINT_OPTIONS file: %0">;
103 def err_drv_preamble_format : Error<
104     "incorrect format for -preamble-bytes=N,END">;
105 def err_drv_objc_gc_arr : Error<
106   "cannot specify both '-fobjc-arc' and '%0'">;
107 def err_arc_unsupported_on_runtime : Error<
108   "-fobjc-arc is not supported on platforms using the legacy runtime">;
109 def err_arc_unsupported_on_toolchain : Error< // feel free to generalize this
110   "-fobjc-arc is not supported on versions of OS X prior to 10.6">;
111 def err_drv_mg_requires_m_or_mm : Error<
112   "option '-MG' requires '-M' or '-MM'">;
113 def err_drv_unknown_objc_runtime : Error<
114   "unknown or ill-formed Objective-C runtime '%0'">;
115 def err_drv_emit_llvm_link : Error<
116    "-emit-llvm cannot be used when linking">;
117 def err_drv_optimization_remark_pattern : Error<
118   "%0 in '%1'">;
119 def err_drv_no_neon_modifier : Error<"[no]neon is not accepted as modifier, please use [no]simd instead">;
120
121 def warn_O4_is_O3 : Warning<"-O4 is equivalent to -O3">, InGroup<Deprecated>;
122 def warn_drv_optimization_value : Warning<"optimization level '%0' is not supported; using '%1%2' instead">,
123   InGroup<InvalidCommandLineArgument>;
124 def warn_ignored_gcc_optimization : Warning<"optimization flag '%0' is not supported">,
125   InGroup<IgnoredOptimizationArgument>;
126 def warn_c_kext : Warning<
127   "ignoring -fapple-kext which is valid for C++ and Objective-C++ only">;
128 def warn_drv_input_file_unused : Warning<
129   "%0: '%1' input unused%select{ when '%3' is present|}2">,
130   InGroup<UnusedCommandLineArgument>;
131 def warn_drv_input_file_unused_by_cpp : Warning<
132   "%0: '%1' input unused in cpp mode">,
133   InGroup<UnusedCommandLineArgument>;
134 def warn_drv_preprocessed_input_file_unused : Warning<
135   "%0: previously preprocessed input%select{ unused when '%2' is present|}1">,
136   InGroup<UnusedCommandLineArgument>;
137 def warn_drv_unused_argument : Warning<
138   "argument unused during compilation: '%0'">,
139   InGroup<UnusedCommandLineArgument>;
140 def warn_drv_empty_joined_argument : Warning<
141   "joined argument expects additional value: '%0'">,
142   InGroup<UnusedCommandLineArgument>;
143 def warn_drv_clang_unsupported : Warning<
144   "the clang compiler does not support '%0'">;
145 def warn_drv_assuming_mfloat_abi_is : Warning<
146   "unknown platform, assuming -mfloat-abi=%0">;
147 def warn_ignoring_ftabstop_value : Warning<
148   "ignoring invalid -ftabstop value '%0', using default value %1">;
149 def warn_drv_overriding_flag_option : Warning<
150   "overriding '%0' option with '%1'">,
151   InGroup<DiagGroup<"overriding-t-option">>;
152 def warn_drv_treating_input_as_cxx : Warning<
153   "treating '%0' input as '%1' when in C++ mode, this behavior is deprecated">,
154   InGroup<Deprecated>;
155 def warn_drv_objc_gc_unsupported : Warning<
156   "Objective-C garbage collection is not supported on this platform, ignoring '%0'">;
157 def warn_drv_pch_not_first_include : Warning<
158   "precompiled header '%0' was ignored because '%1' is not first '-include'">;
159 def warn_missing_sysroot : Warning<"no such sysroot directory: '%0'">,
160   InGroup<DiagGroup<"missing-sysroot">>;
161 def warn_debug_compression_unavailable : Warning<"cannot compress debug sections (zlib not installed)">,
162   InGroup<DiagGroup<"debug-compression-unavailable">>;
163
164 def note_drv_command_failed_diag_msg : Note<
165   "diagnostic msg: %0">;
166 def note_drv_t_option_is_global : Note<
167   "The last /TC or /TP option takes precedence over earlier instances">;
168 def note_drv_address_sanitizer_debug_runtime : Note<
169   "AddressSanitizer doesn't support linking with debug runtime libraries yet">;
170
171 def err_analyzer_config_no_value : Error<
172   "analyzer-config option '%0' has a key but no value">;
173 def err_analyzer_config_multiple_values : Error<
174   "analyzer-config option '%0' should contain only one '='">;
175
176 def err_drv_modules_validate_once_requires_timestamp : Error<
177   "option '-fmodules-validate-once-per-build-session' requires "
178   "'-fbuild-session-timestamp=<seconds since Epoch>' or '-fbuild-session-file=<file>'">;
179
180 def warn_drv_invoking_fallback : Warning<"falling back to %0">,
181   InGroup<Fallback>;
182 }