disable threads when linking WebAssembly to work around an LLD bug

See #2283
This commit is contained in:
Andrew Kelley 2019-04-15 20:41:50 -04:00
parent 579dd74114
commit 6692cbbe18
No known key found for this signature in database
GPG Key ID: 7C5F548F728501A9

View File

@ -1091,6 +1091,11 @@ static void construct_linker_job_wasm(LinkJob *lj) {
CodeGen *g = lj->codegen;
lj->args.append("-error-limit=0");
// This works around a deadlock in LLD's wasm code.
// See https://github.com/ziglang/zig/issues/2283.
lj->args.append("--no-threads");
if (g->zig_target->os != OsWASI) {
lj->args.append("--no-entry"); // So lld doesn't look for _start.
}