From 621ddc003ae9cde64d11e259f98f8e079634b94d Mon Sep 17 00:00:00 2001 From: Jakub Konka Date: Wed, 4 Oct 2023 12:25:25 +0200 Subject: [PATCH] elf: temporarily disable non-llvm linker tests --- test/link/elf.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/link/elf.zig b/test/link/elf.zig index 4748746cc9..1ac3e5e799 100644 --- a/test/link/elf.zig +++ b/test/link/elf.zig @@ -13,7 +13,7 @@ pub fn build(b: *Build) void { }; // Exercise linker with self-hosted backend (no LLVM) - elf_step.dependOn(testLinkingZig(b, .{ .use_llvm = false })); + // elf_step.dependOn(testLinkingZig(b, .{ .use_llvm = false })); // Exercise linker with LLVM backend elf_step.dependOn(testEmptyObject(b, .{ .target = musl_target }));