diff options
| author | Jakub Konka <kubkon@jakubkonka.com> | 2023-08-21 08:07:42 +0200 |
|---|---|---|
| committer | Jakub Konka <kubkon@jakubkonka.com> | 2023-08-21 08:07:44 +0200 |
| commit | b73ef342895f00bdb31ea5f947ee83764f235d43 (patch) | |
| tree | 1aed709d194cdcfd203c2df5b88a1ac02a31d04c /src/link/Coff | |
| parent | 4793dafa0433d758b126f2f97d1de031b99e0fa1 (diff) | |
| download | zig-b73ef342895f00bdb31ea5f947ee83764f235d43.tar.gz zig-b73ef342895f00bdb31ea5f947ee83764f235d43.zip | |
frontend: directly pass resolved frameworks container to the linker
We can infer the framework name from the included resolved framework
path.
Fix hash implementation, and bump linker hash value from 9 to 10.
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 bd82254e6a..c0f88704e5 100644 --- a/src/link/Coff/lld.zig +++ b/src/link/Coff/lld.zig @@ -63,7 +63,7 @@ pub fn linkWithLLD(self: *Coff, comp: *Compilation, prog_node: *std.Progress.Nod man = comp.cache_parent.obtain(); self.base.releaseLock(); - comptime assert(Compilation.link_hash_implementation_version == 9); + comptime assert(Compilation.link_hash_implementation_version == 10); for (self.base.options.objects) |obj| { _ = try man.addFile(obj.path, null); |
