From 0824d30ddb65b0e7cacac8b828e75872b856ee7c Mon Sep 17 00:00:00 2001 From: Nicolas Schuler Date: Sat, 18 Jan 2025 11:49:35 +0100 Subject: [PATCH] add OS dependent library switch It fixes build errors where "/opt/homebrew/lib" can not be found on Linux systems. --- build.zig | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/build.zig b/build.zig index da609af..14f4f6e 100644 --- a/build.zig +++ b/build.zig @@ -4,6 +4,7 @@ const std = @import("std"); pub fn build(b: *std.Build) !void { const target = b.standardTargetOptions(.{}); const optimize = b.standardOptimizeOption(.{}); + const native_os = @import("builtin").os.tag; const use_libzodium = b.option(bool, "without-libsodium", "Use the zig standard library instead of libsodium") orelse false; const use_static_linking = b.option(bool, "static", "Statically link the binary") orelse false; @@ -55,8 +56,11 @@ pub fn build(b: *std.Build) !void { minisign.addLibraryPath(.{ .cwd_relative = path }); override_pkgconfig = true; } - minisign.addLibraryPath(.{ .cwd_relative = "/opt/homebrew/lib" }); - minisign.addLibraryPath(.{ .cwd_relative = "/usr/local/lib" }); + switch (native_os) { + .linux => minisign.addLibraryPath(.{ .cwd_relative = "/usr/local/lib" }), + .macos => minisign.addLibraryPath(.{ .cwd_relative = "/opt/homebrew/lib" }), + else => {}, + } minisign.root_module.linkSystemLibrary( "sodium", .{