diff options
| author | dhash <me@dha.sh> | 2023-09-29 13:38:54 -0400 |
|---|---|---|
| committer | Carl Åstholm <carl@astholm.se> | 2024-01-09 17:24:11 +0100 |
| commit | 9bb643031864c8c3c2d4ac52aecb175283e335e3 (patch) | |
| tree | 20e8fa8787aa7e29e9771edff9d20f8a404ea70b /src/link/Coff | |
| parent | 60094cc3fc979df0928c412c9fded457172f2060 (diff) | |
| download | zig-9bb643031864c8c3c2d4ac52aecb175283e335e3.tar.gz zig-9bb643031864c8c3c2d4ac52aecb175283e335e3.zip | |
Add support for `--(no-)undefined-version`
Co-authored-by: Motiejus Jakštys <motiejus@jakstys.lt>
Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>
Co-authored-by: Samuel Cantero <scanterog@gmail.com>
Co-authored-by: Giorgos Georgiou <giorgos.georgiou@datadoghq.com>
Co-authored-by: Carl Åstholm <carl@astholm.se>
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 1115b91a57..6b9054b2b4 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 == 10); + comptime assert(Compilation.link_hash_implementation_version == 11); for (comp.objects) |obj| { _ = try man.addFile(obj.path, null); |
