mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-05 03:47:45 +03:00
add OS dependent library switch
It fixes build errors where "/opt/homebrew/lib" can not be found on Linux systems.
This commit is contained in:
parent
29a07eade0
commit
0824d30ddb
1 changed files with 6 additions and 2 deletions
|
@ -4,6 +4,7 @@ const std = @import("std");
|
||||||
pub fn build(b: *std.Build) !void {
|
pub fn build(b: *std.Build) !void {
|
||||||
const target = b.standardTargetOptions(.{});
|
const target = b.standardTargetOptions(.{});
|
||||||
const optimize = b.standardOptimizeOption(.{});
|
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_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;
|
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 });
|
minisign.addLibraryPath(.{ .cwd_relative = path });
|
||||||
override_pkgconfig = true;
|
override_pkgconfig = true;
|
||||||
}
|
}
|
||||||
minisign.addLibraryPath(.{ .cwd_relative = "/opt/homebrew/lib" });
|
switch (native_os) {
|
||||||
minisign.addLibraryPath(.{ .cwd_relative = "/usr/local/lib" });
|
.linux => minisign.addLibraryPath(.{ .cwd_relative = "/usr/local/lib" }),
|
||||||
|
.macos => minisign.addLibraryPath(.{ .cwd_relative = "/opt/homebrew/lib" }),
|
||||||
|
else => {},
|
||||||
|
}
|
||||||
minisign.root_module.linkSystemLibrary(
|
minisign.root_module.linkSystemLibrary(
|
||||||
"sodium",
|
"sodium",
|
||||||
.{
|
.{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue