Let people compile with ReleaseFast if they want to

This commit is contained in:
Frank Denis 2025-01-15 22:29:18 +01:00
parent c084f9ca38
commit b393ff47b1
2 changed files with 6 additions and 4 deletions

View file

@ -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;