diff options
| author | Dillen Meijboom <dillen@brainhive.nl> | 2024-02-22 23:39:16 +0100 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-03-06 17:52:05 -0800 |
| commit | 377ecc6afb14a112a07c6d2c3570e2b77b12a116 (patch) | |
| tree | 706ef264ff807f729e37e2aef2b83a8d8e7ab99e /src/link/Wasm.zig | |
| parent | aa7d16aba1f0b3a9e816684618d16cb1d178a6d3 (diff) | |
| download | zig-377ecc6afb14a112a07c6d2c3570e2b77b12a116.tar.gz zig-377ecc6afb14a112a07c6d2c3570e2b77b12a116.zip | |
feat: add support for --enable-new-dtags and --disable-new-dtags
Diffstat (limited to 'src/link/Wasm.zig')
| -rw-r--r-- | src/link/Wasm.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/Wasm.zig b/src/link/Wasm.zig index b9997cf883..c32a472213 100644 --- a/src/link/Wasm.zig +++ b/src/link/Wasm.zig @@ -3375,7 +3375,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 == 12); + comptime assert(Compilation.link_hash_implementation_version == 13); for (comp.objects) |obj| { _ = try man.addFile(obj.path, null); |
