mlugg 8aab222ffb Compilation: add missing link file options to cache manifest
Also add a standalone test which covers the `-fentry` case. It does this
by performing two reproducible compilations which are identical other
than having different entry points, and checking whether the emitted
binaries are identical (they should *not* be).

Resolves: #23869
2025-06-17 15:33:50 +01:00

8 lines
103 B
Zig

pub const _start = {};
export fn foo() u32 {
return 123;
}
export fn bar() u32 {
return 456;
}