mirror of
https://github.com/c64scene-ar/llvm-6502.git
synced 2025-09-24 23:28:41 +00:00
Implement PR679:
* Changed the -rpath option from cl::opt to cl::list * Changed the interface to GenerateNative to take a std::vector<std::string> instead of just a std::string * Changed GenerateNative to generate multiple -Wl,-rpath, options to be passed to gcc. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@24930 91177308-0d34-0410-b5e6-96231b3b80d8
This commit is contained in:
@@ -88,7 +88,7 @@ namespace {
|
||||
SaveTemps("save-temps",
|
||||
cl::desc("Do not delete temporary files"));
|
||||
|
||||
cl::opt<std::string>
|
||||
cl::list<std::string>
|
||||
RPath("rpath",
|
||||
cl::desc("Set runtime shared library search path (requires -native or"
|
||||
" -native-cbe)"),
|
||||
@@ -107,6 +107,11 @@ namespace {
|
||||
CO5("eh-frame-hdr", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||
cl::opt<std::string>
|
||||
CO6("h", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||
cl::opt<bool>
|
||||
CO7("start-group", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||
cl::opt<bool>
|
||||
CO8("end-group", cl::Hidden, cl::desc("Compatibility option: ignored"));
|
||||
|
||||
cl::alias A0("s", cl::desc("Alias for --strip-all"),
|
||||
cl::aliasopt(Strip));
|
||||
cl::alias A1("S", cl::desc("Alias for --strip-debug"),
|
||||
|
Reference in New Issue
Block a user