]> granicus.if.org Git - clang/blob - include/clang/Basic/TargetOptions.h
Documentation cleanup: reformatting/fixing up file comments so that they have
[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 /// \file
11 /// \brief Defines the clang::TargetOptions class.
12 ///
13 //===----------------------------------------------------------------------===//
14
15 #ifndef LLVM_CLANG_FRONTEND_TARGETOPTIONS_H
16 #define LLVM_CLANG_FRONTEND_TARGETOPTIONS_H
17
18 #include <string>
19 #include <vector>
20
21 namespace clang {
22
23 /// TargetOptions - Options for controlling the target.
24 class TargetOptions {
25 public:
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