zig 0.15: build on macOS

pull/9004/head
Mitchell Hashimoto 2025-10-02 15:38:32 -07:00
parent 0112607532
commit f0cfaa9580
No known key found for this signature in database
GPG Key ID: 523D5DC389D273BC
1 changed files with 3 additions and 1 deletions

View File

@ -28,7 +28,9 @@ pub fn initStatic(
.omit_frame_pointer = deps.config.strip,
.unwind_tables = if (deps.config.strip) .none else .sync,
}),
.linkage = .static,
// Fails on self-hosted x86_64 on macOS
.use_llvm = true,
});
lib.linkLibC();