mirror of
https://github.com/RPCS3/llvm-mirror.git
synced 2025-01-07 03:40:35 +00:00
dsymutil: Make -oso-prepend-path available to DwarfLinker.
NFC llvm-svn: 248312
This commit is contained in:
parent
f9f211c24e
commit
9f6d56f4ae
@ -257,6 +257,7 @@ int main(int argc, char **argv) {
|
|||||||
Options.Verbose = Verbose;
|
Options.Verbose = Verbose;
|
||||||
Options.NoOutput = NoOutput;
|
Options.NoOutput = NoOutput;
|
||||||
Options.NoODR = NoODR;
|
Options.NoODR = NoODR;
|
||||||
|
Options.PrependPath = OsoPrependPath;
|
||||||
|
|
||||||
llvm::InitializeAllTargetInfos();
|
llvm::InitializeAllTargetInfos();
|
||||||
llvm::InitializeAllTargetMCs();
|
llvm::InitializeAllTargetMCs();
|
||||||
|
@ -28,6 +28,7 @@ struct LinkOptions {
|
|||||||
bool Verbose; ///< Verbosity
|
bool Verbose; ///< Verbosity
|
||||||
bool NoOutput; ///< Skip emitting output
|
bool NoOutput; ///< Skip emitting output
|
||||||
bool NoODR; ///< Do not unique types according to ODR
|
bool NoODR; ///< Do not unique types according to ODR
|
||||||
|
std::string PrependPath; //< -oso-prepend-path
|
||||||
|
|
||||||
LinkOptions() : Verbose(false), NoOutput(false) {}
|
LinkOptions() : Verbose(false), NoOutput(false) {}
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user