mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-04 11:27:42 +03:00
Let people compile with ReleaseFast if they want to
This commit is contained in:
parent
c084f9ca38
commit
b393ff47b1
2 changed files with 6 additions and 4 deletions
|
@ -2,7 +2,7 @@ const std = @import("std");
|
|||
|
||||
pub fn build(b: *std.Build) !void {
|
||||
const target = b.standardTargetOptions(.{});
|
||||
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSmall });
|
||||
const optimize = b.standardOptimizeOption(.{});
|
||||
|
||||
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;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue