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 {...@@ -99,7 +99,7 @@ fn testDeadStrip(b: *std.Build, opts: Options) *Step {
99fn testEntryPointDylib(b: *std.Build, opts: Options) *Step {99fn testEntryPointDylib(b: *std.Build, opts: Options) *Step {
100 const test_step = addTestStep(b, "macho-entry-point-dylib", opts);100 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" });
103 addCSourceBytes(dylib,103 addCSourceBytes(dylib,
104 \\extern int my_main();104 \\extern int my_main();
105 \\int bootstrap() {105 \\int bootstrap() {