From 61d8ae21deaddbfc4fab0856563139d5e110bc8e Mon Sep 17 00:00:00 2001 From: David Gonzalez Martin Date: Fri, 26 Jan 2024 23:56:10 +0100 Subject: [PATCH] build: fix dev llvm paths --- build.zig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index 868d8de..cdba5fc 100644 --- a/build.zig +++ b/build.zig @@ -5,8 +5,8 @@ pub fn build(b: *std.Build) !void { all = b.option(bool, "all", "All") orelse false; const optimization = b.standardOptimizeOption(.{}); const llvm_debug = b.option(bool, "llvm_debug", "Use LLVM in the debug version") orelse false; - const llvm_debug_path = b.option([]const u8, "llvm_debug_path", "LLVM debug path") orelse "../dev/llvm-17-static-debug"; - const llvm_release_path = b.option([]const u8, "llvm_release_path", "LLVM release path") orelse "../dev/llvm-17-static-release"; + const llvm_debug_path = b.option([]const u8, "llvm_debug_path", "LLVM debug path") orelse "../llvm-17-static-debug"; + const llvm_release_path = b.option([]const u8, "llvm_release_path", "LLVM release path") orelse "../llvm-17-static-release"; const target_query = try std.zig.CrossTarget.parse(.{ .arch_os_abi = "native-linux-musl", });