mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-03 19:07:41 +03:00
No need to set headerpad_max_install_names when linking statically
This commit is contained in:
parent
090cc4752c
commit
41306e3e42
1 changed files with 3 additions and 1 deletions
|
@ -65,7 +65,9 @@ pub fn build(b: *std.Build) !void {
|
|||
std.fs.accessAbsolute(path, .{}) catch continue;
|
||||
minisign.addLibraryPath(.{ .cwd_relative = path });
|
||||
}
|
||||
minisign.headerpad_max_install_names = true; // required to compile using Homebrew, see https://github.com/jedisct1/minisign/pull/155
|
||||
if (!use_static_linking) {
|
||||
minisign.headerpad_max_install_names = true; // required to compile using Homebrew, see https://github.com/jedisct1/minisign/pull/155
|
||||
}
|
||||
minisign.root_module.linkSystemLibrary(
|
||||
"sodium",
|
||||
.{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue