1//==--- DiagnosticDriverKinds.td - libdriver diagnostics ------------------===//
2//
3// Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4// See https://llvm.org/LICENSE.txt for license information.
5// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6//
7//===----------------------------------------------------------------------===//
8
9let Component = "Driver" in {
10
11def err_drv_no_such_file : Error<"no such file or directory: '%0'">;
12def err_drv_no_such_file_with_suggestion : Error<
13  "no such file or directory: '%0'; did you mean '%1'?">;
14def err_drv_unsupported_opt : Error<"unsupported option '%0'">;
15def err_drv_unsupported_opt_with_suggestion : Error<
16  "unsupported option '%0'; did you mean '%1'?">;
17def err_drv_unsupported_opt_for_target : Error<
18  "unsupported option '%0' for target '%1'">;
19def err_drv_unsupported_option_argument : Error<
20  "unsupported argument '%1' to option '%0'">;
21def err_drv_unknown_stdin_type : Error<
22  "-E or -x required when input is from standard input">;
23def err_drv_unknown_stdin_type_clang_cl : Error<
24  "use /Tc or /Tp to set input type for standard input">;
25def err_drv_unknown_language : Error<"language not recognized: '%0'">;
26def err_drv_invalid_arch_name : Error<
27  "invalid arch name '%0'">;
28def err_drv_invalid_riscv_arch_name : Error<
29  "invalid arch name '%0', %1">;
30def err_drv_invalid_riscv_ext_arch_name : Error<
31  "invalid arch name '%0', %1 '%2'">;
32def warn_drv_avr_mcu_not_specified : Warning<
33  "no target microcontroller specified on command line, cannot "
34  "link standard libraries, please pass -mmcu=<mcu name>">,
35  InGroup<AVRRtlibLinkingQuirks>;
36def warn_drv_avr_gcc_not_found: Warning<
37  "no avr-gcc installation can be found on the system, "
38  "cannot link standard libraries">,
39  InGroup<AVRRtlibLinkingQuirks>;
40def warn_drv_avr_libc_not_found: Warning<
41  "no avr-libc installation can be found on the system, "
42  "cannot link standard libraries">,
43  InGroup<AVRRtlibLinkingQuirks>;
44def warn_drv_avr_family_linking_stdlibs_not_implemented: Warning<
45  "support for linking stdlibs for microcontroller '%0' is not implemented">,
46  InGroup<AVRRtlibLinkingQuirks>;
47def warn_drv_avr_stdlib_not_linked: Warning<
48  "standard library not linked and so no interrupt vector table or "
49  "compiler runtime routines will be linked">,
50  InGroup<AVRRtlibLinkingQuirks>;
51def err_drv_cuda_bad_gpu_arch : Error<"Unsupported CUDA gpu architecture: %0">;
52def err_drv_no_cuda_installation : Error<
53  "cannot find CUDA installation.  Provide its path via --cuda-path, or pass "
54  "-nocudainc to build without CUDA includes.">;
55def err_drv_no_cuda_libdevice : Error<
56  "cannot find libdevice for %0. Provide path to different CUDA installation "
57  "via --cuda-path, or pass -nocudalib to build without linking with libdevice.">;
58def err_drv_cuda_version_unsupported : Error<
59  "GPU arch %0 is supported by CUDA versions between %1 and %2 (inclusive), "
60  "but installation at %3 is %4.  Use --cuda-path to specify a different CUDA "
61  "install, pass a different GPU arch with --cuda-gpu-arch, or pass "
62  "--no-cuda-version-check.">;
63def warn_drv_unknown_cuda_version: Warning<
64  "Unknown CUDA version %0. Assuming the latest supported version %1">,
65  InGroup<CudaUnknownVersion>;
66def err_drv_cuda_host_arch : Error<"unsupported architecture '%0' for host compilation.">;
67def err_drv_mix_cuda_hip : Error<"Mixed Cuda and HIP compilation is not supported.">;
68def err_drv_invalid_thread_model_for_target : Error<
69  "invalid thread model '%0' in '%1' for this target">;
70def err_drv_invalid_linker_name : Error<
71  "invalid linker name in argument '%0'">;
72def err_drv_invalid_pgo_instrumentor : Error<
73  "invalid PGO instrumentor in argument '%0'">;
74def err_drv_invalid_rtlib_name : Error<
75  "invalid runtime library name in argument '%0'">;
76def err_drv_unsupported_rtlib_for_platform : Error<
77  "unsupported runtime library '%0' for platform '%1'">;
78def err_drv_invalid_unwindlib_name : Error<
79  "invalid unwind library name in argument '%0'">;
80def err_drv_incompatible_unwindlib : Error<
81  "--rtlib=libgcc requires --unwindlib=libgcc">;
82def err_drv_invalid_stdlib_name : Error<
83  "invalid library name in argument '%0'">;
84def err_drv_invalid_output_with_multiple_archs : Error<
85  "cannot use '%0' output with multiple -arch options">;
86def err_drv_no_input_files : Error<"no input files">;
87def err_drv_use_of_Z_option : Error<
88  "unsupported use of internal gcc -Z option '%0'">;
89def err_drv_output_argument_with_multiple_files : Error<
90  "cannot specify -o when generating multiple output files">;
91def err_drv_out_file_argument_with_multiple_sources : Error<
92  "cannot specify '%0%1' when compiling multiple source files">;
93def err_no_external_assembler : Error<
94  "there is no external assembler that can be used on this platform">;
95def err_drv_unable_to_remove_file : Error<
96  "unable to remove file: %0">;
97def err_drv_unable_to_set_working_directory : Error <
98  "unable to set working directory: %0">;
99def err_drv_command_failure : Error<
100  "unable to execute command: %0">;
101def err_drv_invalid_darwin_version : Error<
102  "invalid Darwin version number: %0">;
103def err_drv_missing_argument : Error<
104  "argument to '%0' is missing (expected %1 value%s1)">;
105def err_drv_invalid_Xarch_argument_with_args : Error<
106  "invalid Xarch argument: '%0', options requiring arguments are unsupported">;
107def err_drv_invalid_Xarch_argument_isdriver : Error<
108  "invalid Xarch argument: '%0', cannot change driver behavior inside Xarch argument">;
109def err_drv_Xopenmp_target_missing_triple : Error<
110  "cannot deduce implicit triple value for -Xopenmp-target, specify triple using -Xopenmp-target=<triple>">;
111def err_drv_invalid_Xopenmp_target_with_args : Error<
112  "invalid -Xopenmp-target argument: '%0', options requiring arguments are unsupported">;
113def err_drv_argument_only_allowed_with : Error<
114  "invalid argument '%0' only allowed with '%1'">;
115def err_drv_argument_not_allowed_with : Error<
116  "invalid argument '%0' not allowed with '%1'">;
117def err_drv_invalid_version_number : Error<
118  "invalid version number in '%0'">;
119def err_drv_no_linker_llvm_support : Error<
120  "'%0': unable to pass LLVM bit-code files to linker">;
121def err_drv_no_ast_support : Error<
122  "'%0': unable to use AST files with this tool">;
123def err_drv_no_module_support : Error<
124  "'%0': unable to use module files with this tool">;
125def err_drv_clang_unsupported : Error<
126  "the clang compiler does not support '%0'">;
127def err_drv_clang_unsupported_opt_cxx_darwin_i386 : Error<
128  "the clang compiler does not support '%0' for C++ on Darwin/i386">;
129def err_drv_clang_unsupported_opt_pg_darwin: Error<
130  "the clang compiler does not support -pg option on %select{Darwin|versions of OS X 10.9 and later}0">;
131def err_drv_clang_unsupported_opt_faltivec : Error<
132  "the clang compiler does not support '%0', %1">;
133def err_drv_command_failed : Error<
134  "%0 command failed with exit code %1 (use -v to see invocation)">;
135def err_drv_compilationdatabase : Error<
136  "compilation database '%0' could not be opened: %1">;
137def err_drv_command_signalled : Error<
138  "%0 command failed due to signal (use -v to see invocation)">;
139def err_drv_force_crash : Error<
140  "failing because %select{environment variable 'FORCE_CLANG_DIAGNOSTICS_CRASH' is set|'-gen-reproducer' is used}0">;
141def err_drv_invalid_mfloat_abi : Error<
142  "invalid float ABI '%0'">;
143def err_drv_invalid_mtp : Error<
144  "invalid thread pointer reading mode '%0'">;
145def err_drv_missing_arg_mtp : Error<
146  "missing argument to '%0'">;
147def err_drv_invalid_libcxx_deployment : Error<
148  "invalid deployment target for -stdlib=libc++ (requires %0 or later)">;
149def err_drv_invalid_argument_to_option : Error<
150  "invalid argument '%0' to -%1">;
151def err_drv_malformed_sanitizer_blacklist : Error<
152  "malformed sanitizer blacklist: '%0'">;
153def err_drv_duplicate_config : Error<
154  "no more than one option '--config' is allowed">;
155def err_drv_config_file_not_exist : Error<
156  "configuration file '%0' does not exist">;
157def err_drv_config_file_not_found : Error<
158  "configuration file '%0' cannot be found">;
159def note_drv_config_file_searched_in : Note<
160  "was searched for in the directory: %0">;
161def err_drv_cannot_read_config_file : Error<
162  "cannot read configuration file '%0'">;
163def err_drv_nested_config_file: Error<
164  "option '--config' is not allowed inside configuration file">;
165def err_drv_arg_requires_bitcode_input: Error<
166  "option '%0' requires input to be LLVM bitcode">;
167
168def err_target_unsupported_arch
169  : Error<"the target architecture '%0' is not supported by the target '%1'">;
170def err_cpu_unsupported_isa
171  : Error<"CPU '%0' does not support '%1' execution mode">;
172def err_arch_unsupported_isa
173  : Error<"Architecture '%0' does not support '%1' execution mode">;
174
175def err_drv_I_dash_not_supported : Error<
176  "'%0' not supported, please use -iquote instead">;
177def err_drv_unknown_argument : Error<"unknown argument: '%0'">;
178def err_drv_unknown_argument_with_suggestion : Error<
179  "unknown argument '%0'; did you mean '%1'?">;
180def warn_drv_unknown_argument_clang_cl : Warning<
181  "unknown argument ignored in clang-cl: '%0'">,
182  InGroup<UnknownArgument>;
183def warn_drv_unknown_argument_clang_cl_with_suggestion : Warning<
184  "unknown argument ignored in clang-cl '%0'; did you mean '%1'?">,
185  InGroup<UnknownArgument>;
186
187def warn_drv_ycyu_different_arg_clang_cl : Warning<
188  "support for '/Yc' and '/Yu' with different filenames not implemented yet; flags ignored">,
189  InGroup<ClangClPch>;
190def warn_drv_yc_multiple_inputs_clang_cl : Warning<
191  "support for '/Yc' with more than one source file not implemented yet; flag ignored">,
192  InGroup<ClangClPch>;
193
194def err_drv_dllexport_inlines_and_fallback : Error<
195  "option '/Zc:dllexportInlines-' is ABI-changing and not compatible with '/fallback'">;
196
197def err_drv_invalid_value : Error<"invalid value '%1' in '%0'">;
198def err_drv_invalid_int_value : Error<"invalid integral value '%1' in '%0'">;
199def err_drv_invalid_remap_file : Error<
200    "invalid option '%0' not of the form <from-file>;<to-file>">;
201def err_drv_invalid_gcc_output_type : Error<
202    "invalid output type '%0' for use with gcc tool">;
203def err_drv_cc_print_options_failure : Error<
204    "unable to open CC_PRINT_OPTIONS file: %0">;
205def err_drv_lto_without_lld : Error<"LTO requires -fuse-ld=lld">;
206def err_drv_preamble_format : Error<
207    "incorrect format for -preamble-bytes=N,END">;
208def warn_invalid_ios_deployment_target : Warning<
209  "invalid iOS deployment version '%0', iOS 10 is the maximum deployment "
210  "target for 32-bit targets">, InGroup<InvalidIOSDeploymentTarget>,
211  DefaultError;
212def err_drv_conflicting_deployment_targets : Error<
213  "conflicting deployment targets, both '%0' and '%1' are present in environment">;
214def err_arc_unsupported_on_runtime : Error<
215  "-fobjc-arc is not supported on platforms using the legacy runtime">;
216def err_arc_unsupported_on_toolchain : Error< // feel free to generalize this
217  "-fobjc-arc is not supported on versions of OS X prior to 10.6">;
218def err_objc_weak_with_gc : Error<
219  "-fobjc-weak is not supported in Objective-C garbage collection">;
220def err_objc_weak_unsupported : Error<
221  "-fobjc-weak is not supported on the current deployment target">;
222def err_drv_mg_requires_m_or_mm : Error<
223  "option '-MG' requires '-M' or '-MM'">;
224def err_drv_unknown_objc_runtime : Error<
225  "unknown or ill-formed Objective-C runtime '%0'">;
226def err_drv_invalid_cf_runtime_abi
227  : Error<"invalid CoreFoundation Runtime ABI '%0'; must be one of "
228          "'objc', 'standalone', 'swift', 'swift-5.0', 'swift-4.2', 'swift-4.1'">;
229def err_drv_gnustep_objc_runtime_incompatible_binary : Error<
230  "GNUstep Objective-C runtime version %0 incompatible with target binary format">;
231def err_drv_emit_llvm_link : Error<
232   "-emit-llvm cannot be used when linking">;
233def err_drv_optimization_remark_pattern : Error<
234  "in pattern '%1': %0">;
235def err_drv_optimization_remark_format : Error<
236  "unknown remark serializer format: '%0'">;
237def err_drv_no_neon_modifier : Error<"[no]neon is not accepted as modifier, please use [no]simd instead">;
238def err_drv_invalid_omp_target : Error<"OpenMP target is invalid: '%0'">;
239def err_drv_omp_host_ir_file_not_found : Error<
240  "The provided host compiler IR file '%0' is required to generate code for OpenMP target regions but cannot be found.">;
241def err_drv_omp_host_target_not_supported : Error<
242  "The target '%0' is not a supported OpenMP host target.">;
243def err_drv_expecting_fopenmp_with_fopenmp_targets : Error<
244  "The option -fopenmp-targets must be used in conjunction with a -fopenmp option compatible with offloading, please use -fopenmp=libomp or -fopenmp=libiomp5.">;
245def warn_drv_omp_offload_target_duplicate : Warning<
246  "The OpenMP offloading target '%0' is similar to target '%1' already specified - will be ignored.">,
247  InGroup<OpenMPTarget>;
248def warn_drv_omp_offload_target_missingbcruntime : Warning<
249  "No library '%0' found in the default clang lib directory or in LIBRARY_PATH. Expect degraded performance due to no inlining of runtime functions on target devices.">,
250  InGroup<OpenMPTarget>;
251def err_drv_unsupported_embed_bitcode
252    : Error<"%0 is not supported with -fembed-bitcode">;
253def err_drv_bitcode_unsupported_on_toolchain : Error<
254  "-fembed-bitcode is not supported on versions of iOS prior to 6.0">;
255
256def err_drv_invalid_malign_branch_EQ : Error<
257  "invalid argument '%0' to -malign-branch=; each element must be one of: %1">;
258
259def warn_O4_is_O3 : Warning<"-O4 is equivalent to -O3">, InGroup<Deprecated>;
260def warn_drv_optimization_value : Warning<"optimization level '%0' is not supported; using '%1%2' instead">,
261  InGroup<InvalidCommandLineArgument>;
262def warn_ignored_gcc_optimization : Warning<"optimization flag '%0' is not supported">,
263  InGroup<IgnoredOptimizationArgument>;
264def warn_ignored_clang_option : Warning<"the flag '%0' has been deprecated and will be ignored">,
265  InGroup<UnusedCommandLineArgument>;
266def warn_drv_unsupported_opt_for_target : Warning<
267  "optimization flag '%0' is not supported for target '%1'">,
268  InGroup<IgnoredOptimizationArgument>;
269def warn_drv_unsupported_debug_info_opt_for_target : Warning<
270  "debug information option '%0' is not supported for target '%1'">,
271  InGroup<UnsupportedTargetOpt>;
272def warn_c_kext : Warning<
273  "ignoring -fapple-kext which is valid for C++ and Objective-C++ only">;
274def warn_ignoring_fdiscard_for_bitcode : Warning<
275  "ignoring -fdiscard-value-names for LLVM Bitcode">,
276  InGroup<UnusedCommandLineArgument>;
277def warn_drv_input_file_unused : Warning<
278  "%0: '%1' input unused%select{ when '%3' is present|}2">,
279  InGroup<UnusedCommandLineArgument>;
280def warn_drv_input_file_unused_by_cpp : Warning<
281  "%0: '%1' input unused in cpp mode">,
282  InGroup<UnusedCommandLineArgument>;
283def warn_drv_preprocessed_input_file_unused : Warning<
284  "%0: previously preprocessed input%select{ unused when '%2' is present|}1">,
285  InGroup<UnusedCommandLineArgument>;
286def warn_drv_unused_argument : Warning<
287  "argument unused during compilation: '%0'">,
288  InGroup<UnusedCommandLineArgument>;
289def warn_drv_empty_joined_argument : Warning<
290  "joined argument expects additional value: '%0'">,
291  InGroup<UnusedCommandLineArgument>;
292def warn_drv_diagnostics_hotness_requires_pgo : Warning<
293  "argument '%0' requires profile-guided optimization information">,
294  InGroup<UnusedCommandLineArgument>;
295def warn_drv_clang_unsupported : Warning<
296  "the clang compiler does not support '%0'">;
297def warn_drv_deprecated_arg : Warning<
298  "argument '%0' is deprecated, use '%1' instead">, InGroup<Deprecated>;
299def warn_drv_assuming_mfloat_abi_is : Warning<
300  "unknown platform, assuming -mfloat-abi=%0">;
301def warn_ignoring_ftabstop_value : Warning<
302  "ignoring invalid -ftabstop value '%0', using default value %1">;
303def warn_drv_overriding_flag_option : Warning<
304  "overriding '%0' option with '%1'">,
305  InGroup<DiagGroup<"overriding-t-option">>;
306def warn_drv_treating_input_as_cxx : Warning<
307  "treating '%0' input as '%1' when in C++ mode, this behavior is deprecated">,
308  InGroup<Deprecated>;
309def warn_drv_pch_not_first_include : Warning<
310  "precompiled header '%0' was ignored because '%1' is not first '-include'">;
311def warn_missing_sysroot : Warning<"no such sysroot directory: '%0'">,
312  InGroup<DiagGroup<"missing-sysroot">>;
313def warn_incompatible_sysroot : Warning<"using sysroot for '%0' but targeting '%1'">,
314  InGroup<DiagGroup<"incompatible-sysroot">>;
315def warn_debug_compression_unavailable : Warning<"cannot compress debug sections (zlib not installed)">,
316  InGroup<DiagGroup<"debug-compression-unavailable">>;
317def warn_drv_disabling_vptr_no_rtti_default : Warning<
318  "implicitly disabling vptr sanitizer because rtti wasn't enabled">,
319  InGroup<AutoDisableVptrSanitizer>;
320def warn_drv_object_size_disabled_O0 : Warning<
321  "the object size sanitizer has no effect at -O0, but is explicitly enabled: %0">,
322  InGroup<InvalidCommandLineArgument>, DefaultWarnNoWerror;
323def err_invalid_branch_protection: Error <
324  "invalid branch protection option '%0' in '%1'">;
325
326def note_drv_command_failed_diag_msg : Note<
327  "diagnostic msg: %0">;
328def note_drv_t_option_is_global : Note<
329  "The last /TC or /TP option takes precedence over earlier instances">;
330def note_drv_address_sanitizer_debug_runtime : Note<
331  "AddressSanitizer doesn't support linking with debug runtime libraries yet">;
332def note_drv_use_standard : Note<"use '%0'"
333  "%select{| or '%3'|, '%3', or '%4'|, '%3', '%4', or '%5'}2 "
334  "for '%1' standard">;
335
336def err_analyzer_config_no_value : Error<
337  "analyzer-config option '%0' has a key but no value">;
338def err_analyzer_config_multiple_values : Error<
339  "analyzer-config option '%0' should contain only one '='">;
340def err_analyzer_config_invalid_input : Error<
341  "invalid input for analyzer-config option '%0', that expects %1 value">;
342def err_analyzer_config_unknown : Error<"unknown analyzer-config '%0'">;
343def err_analyzer_checker_option_unknown : Error<
344  "checker '%0' has no option called '%1'">;
345def err_analyzer_checker_option_invalid_input : Error<
346  "invalid input for checker option '%0', that expects %1">;
347
348def err_drv_invalid_hvx_length : Error<
349  "-mhvx-length is not supported without a -mhvx/-mhvx= flag">;
350def warn_drv_vectorize_needs_hvx : Warning<
351  "auto-vectorization requires HVX, use -mhvx to enable it">,
352  InGroup<OptionIgnored>;
353
354def err_drv_module_header_wrong_kind : Error<
355  "header file '%0' input type '%1' does not match type of prior input "
356  "in module compilation; use '-x %2' to override">;
357def err_drv_modules_validate_once_requires_timestamp : Error<
358  "option '-fmodules-validate-once-per-build-session' requires "
359  "'-fbuild-session-timestamp=<seconds since Epoch>' or '-fbuild-session-file=<file>'">;
360
361def err_test_module_file_extension_format : Error<
362  "-ftest-module-file-extension argument '%0' is not of the required form "
363  "'blockname:major:minor:hashed:user info'">;
364
365def warn_drv_invoking_fallback : Warning<"falling back to %0">,
366  InGroup<Fallback>;
367
368def warn_slash_u_filename : Warning<"'/U%0' treated as the '/U' option">,
369  InGroup<DiagGroup<"slash-u-filename">>;
370def note_use_dashdash : Note<"Use '--' to treat subsequent arguments as filenames">;
371
372def err_drv_ropi_rwpi_incompatible_with_pic : Error<
373  "embedded and GOT-based position independence are incompatible">;
374def err_drv_ropi_incompatible_with_cxx : Error<
375  "ROPI is not compatible with c++">;
376
377def err_stack_tagging_requires_hardware_feature : Error<
378  "'-fsanitize=memtag' requires hardware support (+memtag)">;
379
380def warn_target_unsupported_nan2008 : Warning<
381  "ignoring '-mnan=2008' option because the '%0' architecture does not support it">,
382  InGroup<UnsupportedNan>;
383def warn_target_unsupported_nanlegacy : Warning<
384  "ignoring '-mnan=legacy' option because the '%0' architecture does not support it">,
385  InGroup<UnsupportedNan>;
386def warn_target_unsupported_abslegacy : Warning<
387  "ignoring '-mabs=legacy' option because the '%0' architecture does not support it">,
388  InGroup<UnsupportedAbs>;
389def warn_target_unsupported_abs2008 : Warning<
390  "ignoring '-mabs=2008' option because the '%0' architecture does not support it">,
391  InGroup<UnsupportedAbs>;
392def warn_target_unsupported_compact_branches : Warning<
393  "ignoring '-mcompact-branches=' option because the '%0' architecture does not"
394  " support it">, InGroup<UnsupportedCB>;
395def warn_target_unsupported_extension : Warning<
396  "ignoring extension '%0' because the '%1' architecture does not support it">,
397   InGroup<InvalidCommandLineArgument>;
398def warn_drv_unsupported_gpopt : Warning<
399  "ignoring '-mgpopt' option as it cannot be used with %select{|the implicit"
400  " usage of }0-mabicalls">,
401  InGroup<UnsupportedGPOpt>;
402def warn_drv_unsupported_longcalls : Warning<
403  "ignoring '-mlong-calls' option as it is not currently supported with "
404  "%select{|the implicit usage of }0-mabicalls">,
405  InGroup<OptionIgnored>;
406def warn_drv_unsupported_pic_with_mabicalls : Warning<
407  "ignoring '%0' option as it cannot be used with "
408  "%select{implicit usage of|}1 -mabicalls and the N64 ABI">,
409  InGroup<OptionIgnored>;
410def err_drv_unsupported_noabicalls_pic : Error<
411  "position-independent code requires '-mabicalls'">;
412def err_drv_unsupported_indirect_jump_opt : Error<
413  "'-mindirect-jump=%0' is unsupported with the '%1' architecture">;
414def err_drv_unknown_indirect_jump_opt : Error<
415  "unknown '-mindirect-jump=' option '%0'">;
416def err_drv_unsupported_fpatchable_function_entry_argument : Error<
417  "the second argument of '-fpatchable-function-entry' must be smaller than the first argument">;
418
419def warn_drv_unable_to_find_directory_expected : Warning<
420  "unable to find %0 directory, expected to be in '%1'">,
421  InGroup<InvalidOrNonExistentDirectory>, DefaultIgnore;
422
423def warn_drv_ps4_force_pic : Warning<
424  "option '%0' was ignored by the PS4 toolchain, using '-fPIC'">,
425  InGroup<OptionIgnored>;
426
427def warn_drv_ps4_sdk_dir : Warning<
428  "environment variable SCE_ORBIS_SDK_DIR is set, but points to invalid or nonexistent directory '%0'">,
429  InGroup<InvalidOrNonExistentDirectory>;
430
431def err_drv_unsupported_linker : Error<"unsupported value '%0' for -linker option">;
432def err_drv_defsym_invalid_format : Error<"defsym must be of the form: sym=value: %0">;
433def err_drv_defsym_invalid_symval : Error<"Value is not an integer: %0">;
434def warn_drv_msvc_not_found : Warning<
435  "unable to find a Visual Studio installation; "
436  "try running Clang from a developer command prompt">,
437  InGroup<DiagGroup<"msvc-not-found">>;
438
439def warn_drv_fine_grained_bitfield_accesses_ignored : Warning<
440  "option '-ffine-grained-bitfield-accesses' cannot be enabled together with a sanitizer; flag ignored">,
441  InGroup<OptionIgnored>;
442
443def note_drv_verify_prefix_spelling : Note<
444  "-verify prefixes must start with a letter and contain only alphanumeric"
445  " characters, hyphens, and underscores">;
446
447def warn_drv_experimental_isel_incomplete : Warning<
448  "-fexperimental-isel support for the '%0' architecture is incomplete">,
449  InGroup<ExperimentalISel>;
450
451def warn_drv_experimental_isel_incomplete_opt : Warning<
452  "-fexperimental-isel support is incomplete for this architecture at the current optimization level">,
453  InGroup<ExperimentalISel>;
454
455def warn_drv_moutline_unsupported_opt : Warning<
456  "The '%0' architecture does not support -moutline; flag ignored">,
457  InGroup<OptionIgnored>;
458
459def warn_drv_darwin_sdk_invalid_settings : Warning<
460  "SDK settings were ignored as 'SDKSettings.json' could not be parsed">,
461  InGroup<DiagGroup<"darwin-sdk-settings">>;
462
463def err_drv_trivial_auto_var_init_zero_disabled : Error<
464  "-ftrivial-auto-var-init=zero hasn't been enabled. Enable it at your own peril for benchmarking purpose only with "
465  "-enable-trivial-auto-var-init-zero-knowing-it-will-be-removed-from-clang">;
466
467def warn_drv_msp430_hwmult_unsupported : Warning<"the given MCU does not "
468  "support hardware multiply, but -mhwmult is set to %0.">,
469   InGroup<InvalidCommandLineArgument>;
470def warn_drv_msp430_hwmult_mismatch : Warning<"the given MCU supports %0 "
471  "hardware multiply, but -mhwmult is set to %1.">,
472   InGroup<InvalidCommandLineArgument>;
473def warn_drv_msp430_hwmult_no_device : Warning<"no MCU device specified, but "
474  "'-mhwmult' is set to 'auto', assuming no hardware multiply. Use -mmcu to "
475  "specify a MSP430 device, or -mhwmult to set hardware multiply type "
476  "explicitly.">, InGroup<InvalidCommandLineArgument>;
477
478def warn_drv_libstdcxx_not_found : Warning<
479  "include path for libstdc++ headers not found; pass '-stdlib=libc++' on the "
480  "command line to use the libc++ standard library instead">,
481  InGroup<DiagGroup<"stdlibcxx-not-found">>;
482
483def err_drv_cannot_mix_options : Error<"cannot specify '%1' along with '%0'">;
484}
485