diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-02-18 20:00:05 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-02-18 20:00:05 +0000 |
commit | 5443af2b41dd1d4739981fdae6ec6a306354973f (patch) | |
tree | e318b53644f9ff85c7bf5928da982f56fcd2b9ca /tools | |
parent | 7e8a1d7baf8a8ea32903998a3a98e829d2d24486 (diff) | |
download | external_llvm-5443af2b41dd1d4739981fdae6ec6a306354973f.zip external_llvm-5443af2b41dd1d4739981fdae6ec6a306354973f.tar.gz external_llvm-5443af2b41dd1d4739981fdae6ec6a306354973f.tar.bz2 |
Adjust the help output so that it will fit cleanly within 80 columns.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@20239 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools')
-rw-r--r-- | tools/llvmc/llvmc.cpp | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/tools/llvmc/llvmc.cpp b/tools/llvmc/llvmc.cpp index fd416b2..75ea338 100644 --- a/tools/llvmc/llvmc.cpp +++ b/tools/llvmc/llvmc.cpp @@ -101,50 +101,50 @@ cl::alias LinkerToolOptsAlias("Wl,", cl::ZeroOrMore, cl::list<std::string> fOpts("f", cl::ZeroOrMore, cl::Prefix, cl::desc("Pass through -f options to compiler tools"), - cl::value_desc("optimization option")); + cl::value_desc("option")); cl::list<std::string> MOpts("M", cl::ZeroOrMore, cl::Prefix, cl::desc("Pass through -M options to compiler tools"), - cl::value_desc("dependency option")); + cl::value_desc("option")); cl::list<std::string> WOpts("W", cl::ZeroOrMore, cl::Prefix, cl::desc("Pass through -W options to compiler tools"), - cl::value_desc("warnings category")); + cl::value_desc("option")); cl::list<std::string> BOpt("B", cl::ZeroOrMore, cl::Prefix, - cl::desc("Indicate where llvmc sub-tools are installed"), - cl::value_desc("directory path containing bin and lib directories")); + cl::desc("Specify path to find llvmc sub-tools"), + cl::value_desc("dir")); //===------------------------------------------------------------------------=== //=== INPUT OPTIONS //===------------------------------------------------------------------------=== cl::list<std::string> LibPaths("L", cl::Prefix, - cl::desc("Specify a library search path"), cl::value_desc("directory")); + cl::desc("Specify a library search path"), cl::value_desc("dir")); cl::list<std::string> Libraries("l", cl::Prefix, - cl::desc("Specify libraries to link to"), cl::value_desc("library prefix")); + cl::desc("Specify base name of libraries to link to"), cl::value_desc("lib")); cl::list<std::string> Includes("I", cl::Prefix, cl::desc("Specify location to search for included source"), - cl::value_desc("include directory")); + cl::value_desc("dir")); cl::list<std::string> Defines("D", cl::Prefix, - cl::desc("Specify a symbol to define for source configuration"), - cl::value_desc("symbol definition")); + cl::desc("Specify a pre-processor symbol to define"), + cl::value_desc("symbol")); //===------------------------------------------------------------------------=== //=== OUTPUT OPTIONS //===------------------------------------------------------------------------=== cl::opt<std::string> OutputFilename("o", - cl::desc("Override output filename"), cl::value_desc("filename")); + cl::desc("Override output filename"), cl::value_desc("file")); cl::opt<std::string> OutputMachine("m", cl::Prefix, cl::desc("Specify a target machine"), cl::value_desc("machine")); cl::opt<bool> Native("native", cl::init(false), - cl::desc("Generative native object and executables instead of bytecode")); + cl::desc("Generative native code instead of bytecode")); cl::opt<bool> DebugOutput("g", cl::init(false), cl::desc("Generate objects that include debug symbols")); @@ -152,8 +152,8 @@ cl::opt<bool> DebugOutput("g", cl::init(false), cl::opt<bool> StripOutput("strip", cl::init(false), cl::desc("Strip all symbols from linked output file")); -cl::opt<std::string> PrintFileName("print-file-name", cl::Optional, - cl::value_desc("filename"), +cl::opt<std::string> PrintFileName("print-fname", cl::Optional, + cl::value_desc("file"), cl::desc("Print the full path for the option's value")); //===------------------------------------------------------------------------=== @@ -189,8 +189,8 @@ cl::opt<bool> ShowStats("stats", cl::Optional, cl::init(false), //===------------------------------------------------------------------------=== static cl::opt<std::string> ConfigDir("config-dir", cl::Optional, - cl::desc("Specify a configuration directory to override defaults"), - cl::value_desc("directory")); + cl::desc("Specify configuration directory to override defaults"), + cl::value_desc("dir")); static cl::opt<bool> EmitRawCode("emit-raw-code", cl::Hidden, cl::Optional, cl::desc("Emit raw, unoptimized code")); @@ -199,7 +199,7 @@ static cl::opt<bool> PipeCommands("pipe", cl::Optional, cl::desc("Invoke sub-commands by linking input/output with pipes")); static cl::opt<bool> KeepTemps("keep-temps", cl::Optional, - cl::desc("Don't delete the temporary files created during compilation")); + cl::desc("Don't delete temporary files created by llvmc")); //===------------------------------------------------------------------------=== //=== POSITIONAL OPTIONS |