Mikhail Glushenkov | fe4d055 | 2009-06-25 18:20:10 +0000 | [diff] [blame] | 1 | //===--- BuiltinOptions.h - The LLVM Compiler Driver ------------*- C++ -*-===// |
| 2 | // |
| 3 | // The LLVM Compiler Infrastructure |
| 4 | // |
| 5 | // This file is distributed under the University of Illinois Open |
| 6 | // Source License. See LICENSE.TXT for details. |
| 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | // |
| 10 | // Declarations of all global command-line option variables. |
| 11 | // |
| 12 | //===----------------------------------------------------------------------===// |
| 13 | |
| 14 | #ifndef LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H |
| 15 | #define LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H |
| 16 | |
| 17 | #include "llvm/Support/CommandLine.h" |
| 18 | |
| 19 | #include <string> |
| 20 | |
| 21 | namespace SaveTempsEnum { enum Values { Cwd, Obj, Unset }; } |
| 22 | |
| 23 | extern llvm::cl::list<std::string> InputFilenames; |
| 24 | extern llvm::cl::opt<std::string> OutputFilename; |
Sanjiv Gupta | 6de9ddd | 2009-07-09 08:23:38 +0000 | [diff] [blame^] | 25 | extern llvm::cl::opt<std::string> TempDirname; |
Mikhail Glushenkov | fe4d055 | 2009-06-25 18:20:10 +0000 | [diff] [blame] | 26 | extern llvm::cl::list<std::string> Languages; |
| 27 | extern llvm::cl::opt<bool> DryRun; |
| 28 | extern llvm::cl::opt<bool> VerboseMode; |
| 29 | extern llvm::cl::opt<bool> CheckGraph; |
| 30 | extern llvm::cl::opt<bool> WriteGraph; |
| 31 | extern llvm::cl::opt<bool> ViewGraph; |
| 32 | extern llvm::cl::opt<SaveTempsEnum::Values> SaveTemps; |
| 33 | |
| 34 | #endif // LLVM_INCLUDE_COMPILER_DRIVER_BUILTIN_OPTIONS_H |