diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2024-02-02 14:05:51 +0100 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2024-02-02 22:00:16 +0100 |
| commit | 92deebcd668750bd4042c5874bf35b447828cd8a (patch) | |
| tree | 412ac01bd1ee8c20bf4fc55281626e885e8fd0e4 /src/link/Wasm.zig | |
| parent | 9eda6ccefce370c76209ea50dd57fe65bfe25536 (diff) | |
| download | zig-92deebcd668750bd4042c5874bf35b447828cd8a.tar.gz zig-92deebcd668750bd4042c5874bf35b447828cd8a.zip | |
cli+build: handle -ObjC flag and route it to MachO linker
Diffstat (limited to 'src/link/Wasm.zig')
| -rw-r--r-- | src/link/Wasm.zig | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/link/Wasm.zig b/src/link/Wasm.zig index a0cf23579b..9fe8ce417e 100644 --- a/src/link/Wasm.zig +++ b/src/link/Wasm.zig @@ -3511,7 +3511,7 @@ fn linkWithZld(wasm: *Wasm, arena: Allocator, prog_node: *std.Progress.Node) lin // We are about to obtain this lock, so here we give other processes a chance first. wasm.base.releaseLock(); - comptime assert(Compilation.link_hash_implementation_version == 11); + comptime assert(Compilation.link_hash_implementation_version == 12); for (objects) |obj| { _ = try man.addFile(obj.path, null); @@ -4580,7 +4580,7 @@ fn linkWithLLD(wasm: *Wasm, arena: Allocator, prog_node: *std.Progress.Node) !vo // We are about to obtain this lock, so here we give other processes a chance first. wasm.base.releaseLock(); - comptime assert(Compilation.link_hash_implementation_version == 11); + comptime assert(Compilation.link_hash_implementation_version == 12); for (comp.objects) |obj| { _ = try man.addFile(obj.path, null); |
