authorgravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-01-13 18:10:34+01:00
committergravatar for kubkon@jakubkonka.comJakub Konka <kubkon@jakubkonka.com> 2024-01-24 12:34:39+01:00
logffd7f7f6427139b1391d3f2c3d8a02c552ecebf8
tree67432deaa95475e9c87e401267cef16f814d014f
parent6cdcf61a5ce193104c3c0f14189014f65bcd104d

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


1 files changed, 1 insertions(+), 1 deletions(-)

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