mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-07 14:33:15 +00:00
[dsymutil] Reflow option declarations to be more readable.
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@238939 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e942914d29
commit
7953382dce
@ -30,25 +30,26 @@ using namespace llvm::cl;
|
|||||||
static opt<std::string> InputFile(Positional, desc("<input file>"),
|
static opt<std::string> InputFile(Positional, desc("<input file>"),
|
||||||
init("a.out"));
|
init("a.out"));
|
||||||
|
|
||||||
static opt<std::string> OutputFileOpt("o", desc("Specify the output file."
|
static opt<std::string>
|
||||||
" default: <input file>.dwarf"),
|
OutputFileOpt("o",
|
||||||
value_desc("filename"));
|
desc("Specify the output file. default: <input file>.dwarf"),
|
||||||
|
value_desc("filename"));
|
||||||
|
|
||||||
static opt<std::string> OsoPrependPath("oso-prepend-path",
|
static opt<std::string> OsoPrependPath(
|
||||||
desc("Specify a directory to prepend "
|
"oso-prepend-path",
|
||||||
"to the paths of object files."),
|
desc("Specify a directory to prepend to the paths of object files."),
|
||||||
value_desc("path"));
|
value_desc("path"));
|
||||||
|
|
||||||
static opt<bool> Verbose("v", desc("Verbosity level"), init(false));
|
static opt<bool> Verbose("v", desc("Verbosity level"), init(false));
|
||||||
|
|
||||||
static opt<bool> NoOutput("no-output", desc("Do the link in memory, but do "
|
static opt<bool>
|
||||||
"not emit the result file."),
|
NoOutput("no-output",
|
||||||
init(false));
|
desc("Do the link in memory, but do not emit the result file."),
|
||||||
|
init(false));
|
||||||
|
|
||||||
static opt<bool>
|
static opt<bool>
|
||||||
ParseOnly("parse-only",
|
ParseOnly("parse-only",
|
||||||
desc("Only parse the debug map, do not actaully link "
|
desc("Only parse the debug map, do not actaully link the DWARF."),
|
||||||
"the DWARF."),
|
|
||||||
init(false));
|
init(false));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user