comparison gen/cl_options.h @ 986:a8cb25d478c4

Use LLVM-style command line (instead of DMD-style) Note: For a backward compatible interface, use the new bin/ldmd script. It supports all old options while passing on anything it doesn't recognize. Some changes caused by this: * -debug and -version are now -d-debug and -d-version due to a conflict with standard LLVM options. * All "flag" options now allow an optional =true/=1/=false/=0 suffix. * Some "hidden debug switches" starting with "--" were renamed because LLVM doesn't care about the number of dashes, so they were conflicting with other options (such as -c). The new versions start with "-hidden-debug-" instead of "--" * --help works, but has a non-zero exit code. This breaks some Tango scripts which use it to test for compiler existence. See tango.patch. Some changes not (directly) caused by this; * (-enable/-disable)-FOO options are now available for pre- and postconditions. * -march is used instead of -m (like other LLVM programs), but -m is an alias for it. * -defaultlib, -debuglib, -d-debug and -d-version allow comma-separated values. The effect should be identical to specifying the same option multiple times. I decided against allowing these for some other options because paths might contain commas on some systems. * -fPIC is removed in favor of the standard LLVM option -relocation-model=pic Bug: * If -run is specified as the last argument in DFLAGS, no error is generated. (Not very serious IMHO)
author Frits van Bommel <fvbommel wxs.nl>
date Wed, 25 Feb 2009 17:34:51 +0100
parents
children 2667e3a145be
comparison
equal deleted inserted replaced
985:bce024c60adc 986:a8cb25d478c4
1 #ifndef LDC_CL_OPTIONS_H
2 #define LDC_CL_OPTIONS_H
3
4 #include "mars.h"
5
6 #include <deque>
7 #include <vector>
8
9 #include "llvm/Support/RegistryParser.h"
10 #include "llvm/Target/TargetMachineRegistry.h"
11 #include "llvm/Support/CommandLine.h"
12
13 namespace opts {
14 namespace cl = llvm::cl;
15
16 /* Mostly generated with the following command:
17 egrep -e '^(cl::|#if|#e)' gen/cl_options.cpp \
18 | sed -re 's/^(cl::.*)\(.*$/ extern \1;/'
19 */
20 extern cl::list<std::string> fileList;
21 extern cl::list<std::string> runargs;
22 extern cl::opt<bool> compileOnly;
23 extern cl::opt<bool> noAsm;
24 extern cl::opt<bool> dontWriteObj;
25 extern cl::opt<std::string> objectFile;
26 extern cl::opt<std::string> objectDir;
27 extern cl::opt<bool> output_bc;
28 extern cl::opt<bool> output_ll;
29 extern cl::opt<bool> output_s;
30 extern cl::opt<cl::boolOrDefault> output_o;
31 extern cl::opt<std::string> ddocDir;
32 extern cl::opt<std::string> ddocFile;
33 #ifdef _DH
34 extern cl::opt<std::string> hdrDir;
35 extern cl::opt<std::string> hdrFile;
36 #endif
37 extern cl::list<std::string> versions;
38
39 extern cl::opt<const llvm::TargetMachineRegistry::entry*, false,
40 llvm::RegistryParser<llvm::TargetMachine> > mArch;
41
42 // Arguments to -d-debug
43 extern std::vector<std::string> debugArgs;
44 // Arguments to -run
45 }
46 #endif