aboutsummaryrefslogtreecommitdiff
path: root/include/clang/Basic/DiagnosticDriverKinds.def
blob: 47332b6d197575c6c0da4a05d4a929666414c1f5 (plain)
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
//==--- 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")