]> granicus.if.org Git - clang/blob - include/clang/Basic/TargetOptions.h
Frontend: Add -target-linker-version, for specifying the version string of the
[clang] / include / clang / Basic / TargetOptions.h
1 //===--- TargetOptions.h ----------------------------------------*- C++ -*-===//
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 #ifndef LLVM_CLANG_FRONTEND_TARGETOPTIONS_H
11 #define LLVM_CLANG_FRONTEND_TARGETOPTIONS_H
12
13 #include <string>
14 #include <vector>
15
16 namespace clang {
17
18 /// TargetOptions - Options for controlling the target.
19 class TargetOptions {
20 public:
21
22   TargetOptions() {
23     CXXABI = "itanium";
24   }
25
26   /// If given, the name of the target triple to compile for. If not given the
27   /// target will be selected to match the host.
28   std::string Triple;
29
30   /// If given, the name of the target CPU to generate code for.
31   std::string CPU;
32
33   /// If given, the name of the target ABI to use.
34   std::string ABI;
35
36   /// If given, the name of the target C++ ABI to use. If not given, defaults
37   /// to "itanium".
38   std::string CXXABI;
39
40   /// If given, the version string of the linker in use.
41   std::string LinkerVersion;
42
43   /// The list of target specific features to enable or disable -- this should
44   /// be a list of strings starting with by '+' or '-'.
45   std::vector<std::string> Features;
46 };
47
48 }  // end namespace clang
49
50 #endif