From 7fb9df3fab4f8c7acfd73c733a8da752791d4b2a Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Thu, 8 Feb 2024 22:15:00 +0100 Subject: [PATCH] test/link/macho: -fstrip is no longer needed for self-hosted --- test/link/macho.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/link/macho.zig b/test/link/macho.zig index 7bc83b2276..58a391daae 100644 --- a/test/link/macho.zig +++ b/test/link/macho.zig @@ -17,7 +17,7 @@ pub fn testAll(b: *Build, build_opts: BuildOptions) *Step { // Exercise linker with self-hosted backend (no LLVM) macho_step.dependOn(testHelloZig(b, .{ .use_llvm = false, .target = x86_64_target })); - macho_step.dependOn(testRelocatableZig(b, .{ .use_llvm = false, .strip = true, .target = x86_64_target })); + macho_step.dependOn(testRelocatableZig(b, .{ .use_llvm = false, .target = x86_64_target })); // Exercise linker with LLVM backend macho_step.dependOn(testDeadStrip(b, .{ .target = default_target }));