mirror of
https://github.com/jedisct1/minisign.git
synced 2025-04-03 19:07:41 +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
|
@ -25,18 +25,20 @@ Dependencies:
|
|||
|
||||
Compilation with libsodium, dynamically linked (libsodium will need to be installed on the system for the command to run):
|
||||
|
||||
$ zig build -Drelease
|
||||
$ zig build -Doptimize=ReleaseSmall
|
||||
|
||||
Compilation with libsodium, statically linked (libsodium will only be needed for compilation):
|
||||
|
||||
$ zig build -Drelease -Dstatic
|
||||
$ zig build -Doptimize=ReleaseSmall -Dstatic
|
||||
|
||||
Compilation without libsodium, no dependencies required:
|
||||
|
||||
$ zig build -Drelease -Dwithout-libsodium
|
||||
$ zig build -Doptimize=ReleaseSmall -Dwithout-libsodium
|
||||
|
||||
The resulting binary can be found in `zig-out/bin/minisign`.
|
||||
|
||||
In all these examples, `ReleaseFast` can be replaced with `ReleaseSmall` to favor speed over size.
|
||||
|
||||
## Building with cmake and gcc or clang:
|
||||
|
||||
Dependencies:
|
||||
|
|
|
@ -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