diff options
Diffstat (limited to 'include/clang/Frontend/FrontendOptions.h')
-rw-r--r-- | include/clang/Frontend/FrontendOptions.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/clang/Frontend/FrontendOptions.h b/include/clang/Frontend/FrontendOptions.h index 0ccb242796..0674c0bb40 100644 --- a/include/clang/Frontend/FrontendOptions.h +++ b/include/clang/Frontend/FrontendOptions.h @@ -37,6 +37,13 @@ public: unsigned ShowTimers : 1; ///< Show timers for individual /// actions. + /// If given, the name of the target triple to compile for. If not given the + /// target will be selected to match the host. + std::string TargetTriple; + + /// If given, the name of the target ABI to use. + std::string TargetABI; + /// The input files. std::vector<std::string> InputFilenames; |