mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-02-10 20:33:15 +00:00
Make -r work, fixing PR 91
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@9724 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
parent
e292da29bf
commit
fe32bf5d0d
@ -62,13 +62,16 @@ namespace {
|
|||||||
cl::opt<bool>
|
cl::opt<bool>
|
||||||
NoInternalize("disable-internalize",
|
NoInternalize("disable-internalize",
|
||||||
cl::desc("Do not mark all symbols as internal"));
|
cl::desc("Do not mark all symbols as internal"));
|
||||||
static cl::alias
|
cl::alias
|
||||||
ExportDynamic("export-dynamic", cl::desc("Alias for -disable-internalize"),
|
ExportDynamic("export-dynamic", cl::desc("Alias for -disable-internalize"),
|
||||||
cl::aliasopt(NoInternalize));
|
cl::aliasopt(NoInternalize));
|
||||||
|
|
||||||
cl::opt<bool>
|
cl::opt<bool>
|
||||||
LinkAsLibrary("link-as-library", cl::desc("Link the .bc files together as a"
|
LinkAsLibrary("link-as-library", cl::desc("Link the .bc files together as a"
|
||||||
" library, not an executable"));
|
" library, not an executable"));
|
||||||
|
cl::alias
|
||||||
|
Relink("r", cl::desc("Alias for -link-as-library"),
|
||||||
|
cl::aliasopt(LinkAsLibrary));
|
||||||
|
|
||||||
cl::opt<bool>
|
cl::opt<bool>
|
||||||
Native("native",
|
Native("native",
|
||||||
@ -81,8 +84,6 @@ namespace {
|
|||||||
CO4("version-script", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
CO4("version-script", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||||
cl::opt<bool>
|
cl::opt<bool>
|
||||||
CO5("eh-frame-hdr", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
CO5("eh-frame-hdr", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||||
cl::opt<bool>
|
|
||||||
CO6("r", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
Loading…
x
Reference in New Issue
Block a user