diff options
| author | Mikhail Glushenkov <foldr@codedgers.com> | 2009-07-09 19:36:08 +0000 |
|---|---|---|
| committer | Mikhail Glushenkov <foldr@codedgers.com> | 2009-07-09 19:36:08 +0000 |
| commit | b1e8563376dfe1d320dc5801fe8a783600f4f86b (patch) | |
| tree | 7ac490be5c3125814c5976434dc0f1e7cc97dbfc /llvm/lib/CompilerDriver/BuiltinOptions.cpp | |
| parent | 092bc51cdbfb08e0ec4473963df806af09b26370 (diff) | |
| download | llvm-b1e8563376dfe1d320dc5801fe8a783600f4f86b.zip llvm-b1e8563376dfe1d320dc5801fe8a783600f4f86b.tar.gz llvm-b1e8563376dfe1d320dc5801fe8a783600f4f86b.tar.bz2 | |
Rename -t to --temp-dir.
-t is already used by gcc in the meaning 'ld -t' (trace). The Base plugin may
want to emulate this behaviour.
llvm-svn: 75162
Diffstat (limited to 'llvm/lib/CompilerDriver/BuiltinOptions.cpp')
| -rw-r--r-- | llvm/lib/CompilerDriver/BuiltinOptions.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/llvm/lib/CompilerDriver/BuiltinOptions.cpp b/llvm/lib/CompilerDriver/BuiltinOptions.cpp index c4660e1..d90c50d 100644 --- a/llvm/lib/CompilerDriver/BuiltinOptions.cpp +++ b/llvm/lib/CompilerDriver/BuiltinOptions.cpp @@ -25,8 +25,8 @@ cl::list<std::string> InputFilenames(cl::Positional, cl::desc("<input file>"), cl::ZeroOrMore); cl::opt<std::string> OutputFilename("o", cl::desc("Output file name"), cl::value_desc("file"), cl::Prefix); -cl::opt<std::string> TempDirname("t", cl::desc("Temp dir name"), - cl::value_desc("dir"), cl::Prefix); +cl::opt<std::string> TempDirname("temp-dir", cl::desc("Temp dir name"), + cl::value_desc("<directory>"), cl::Prefix); cl::list<std::string> Languages("x", cl::desc("Specify the language of the following input files"), cl::ZeroOrMore); |
