zig

fork of https://codeberg.org/ziglang/zig
Log | Files | Refs | README | LICENSE

commit ffd7f7f6427139b1391d3f2c3d8a02c552ecebf8 (tree)
parent 6cdcf61a5ce193104c3c0f14189014f65bcd104d
Author: Jakub Konka <kubkon@jakubkonka.com>
Date:   Sat, 13 Jan 2024 18:10:34 +0100

test/link/macho: fix naming in entry-in-dylib test

Diffstat:
Mtest/link/macho.zig | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/link/macho.zig b/test/link/macho.zig @@ -99,7 +99,7 @@ fn testDeadStrip(b: *std.Build, opts: Options) *Step { fn testEntryPointDylib(b: *std.Build, opts: Options) *Step { const test_step = addTestStep(b, "macho-entry-point-dylib", opts); - const dylib = addSharedLibrary(b, opts, .{ .name = "liba.dylib" }); + const dylib = addSharedLibrary(b, opts, .{ .name = "a" }); addCSourceBytes(dylib, \\extern int my_main(); \\int bootstrap() {