forked from OSchip/llvm-project
[WebAssembly] Fix location and -flavor when running lld
Add the toolchain installation directory to the program path so that lld can be found. Change -flavor to wasm. Although this new flavor hasn't yet landed in upstream lld yet there are no point in passing wasm objects the gnu flavor. Differential Revision: https://reviews.llvm.org/D32976 llvm-svn: 302558
This commit is contained in:
parent
7855510ae3
commit
27ea1567a4
|
@ -42,7 +42,7 @@ void wasm::Linker::ConstructJob(Compilation &C, const JobAction &JA,
|
|||
const char *Linker = Args.MakeArgString(ToolChain.GetLinkerPath());
|
||||
ArgStringList CmdArgs;
|
||||
CmdArgs.push_back("-flavor");
|
||||
CmdArgs.push_back("ld");
|
||||
CmdArgs.push_back("wasm");
|
||||
|
||||
// Enable garbage collection of unused input sections by default, since code
|
||||
// size is of particular importance. This is significantly facilitated by
|
||||
|
@ -101,6 +101,9 @@ WebAssembly::WebAssembly(const Driver &D, const llvm::Triple &Triple,
|
|||
: ToolChain(D, Triple, Args) {
|
||||
|
||||
assert(Triple.isArch32Bit() != Triple.isArch64Bit());
|
||||
|
||||
getProgramPaths().push_back(getDriver().getInstalledDir());
|
||||
|
||||
getFilePaths().push_back(
|
||||
getDriver().SysRoot + "/lib" + (Triple.isArch32Bit() ? "32" : "64"));
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue