eliminate dependency on LLD for WebAssembly
andrewrk opened this issue · 0 comments
andrewrk commented
Related:
Put simply, this issue can be closed when the following diff is applied:
--- a/src/Compilation.zig
+++ b/src/Compilation.zig
@@ -899,15 +899,13 @@ pub fn create(gpa: Allocator, options: InitOptions) !*Compilation {
// Make a decision on whether to use LLD or our own linker.
const use_lld = options.use_lld orelse blk: {
- if (options.target.isDarwin()) {
- break :blk false;
- }
-
if (!build_options.have_llvm)
break :blk false;
- if (options.target.ofmt == .c)
- break :blk false;
+ switch (options.target.ofmt) {
+ .c, .macho, .wasm => break :blk false,
+ else => {},
+ }
if (options.want_lto) |lto| {
if (lto) {