1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
//==--- DiagnosticDriverKinds.def - libdriver diagnostics -------*- C++ -*-===//
//
// The LLVM Compiler Infrastructure
//
// This file is distributed under the University of Illinois Open Source
// License. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
#ifdef DRIVERSTART
__DRIVERSTART = DIAG_START_DRIVER,
#undef DRIVERSTART
#endif
DIAG(err_drv_no_such_file, ERROR,
"no such file or directory: '%0'")
DIAG(err_drv_unsupported_opt, ERROR,
"unsupported option '%0'")
DIAG(err_drv_unknown_stdin_type, ERROR,
"-E or -x required when input is from standard input")
DIAG(err_drv_unknown_language, ERROR,
"language not recognized: '%0'")
DIAG(err_drv_invalid_opt_with_multiple_archs, ERROR,
"option '%0' cannot be used with multiple -arch options")
DIAG(err_drv_invalid_output_with_multiple_archs, ERROR,
"cannot use '%0' output with multiple -arch options")
DIAG(err_drv_no_input_files, ERROR,
"no input files")
DIAG(err_drv_use_of_Z_option, ERROR,
"unsupported use of internal gcc -Z option '%0'")
|