Commit 7fb9df3fab

Jakub Konka <kubkon@jakubkonka.com>
2024-02-08 22:15:00
test/link/macho: -fstrip is no longer needed for self-hosted
1 parent 5da9d25
Changed files (1)
test
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 }));