We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3cacbea commit 7fe6247Copy full SHA for 7fe6247
1 file changed
src/link/Coff/lld.zig
@@ -98,6 +98,8 @@ pub fn linkWithLLD(self: *Coff, comp: *Compilation, prog_node: *std.Progress.Nod
98
// strip does not need to go into the linker hash because it is part of the hash namespace
99
man.hash.addOptional(self.base.options.major_subsystem_version);
100
man.hash.addOptional(self.base.options.minor_subsystem_version);
101
+ man.hash.addOptional(self.base.options.version);
102
+ man.hash.addOptionalBytes(self.base.options.module_definition_file);
103
104
// We don't actually care whether it's a cache hit or miss; we just need the digest and the lock.
105
_ = try man.hit();
0 commit comments