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/Coff | |
| 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/Coff')
| -rw-r--r-- | src/link/Coff/lld.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/link/Coff/lld.zig b/src/link/Coff/lld.zig index 90e284900a..475090c31d 100644 --- a/src/link/Coff/lld.zig +++ b/src/link/Coff/lld.zig @@ -70,7 +70,7 @@ pub fn linkWithLLD(self: *Coff, arena: Allocator, prog_node: *std.Progress.Node) man = comp.cache_parent.obtain(); self.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); |
