Add -Dstatic

This commit is contained in:
Frank Denis 2025-01-15 22:19:16 +01:00
parent 12333fd7d1
commit e0e86b4e4f
2 changed files with 11 additions and 3 deletions

View file

@ -23,11 +23,15 @@ Dependencies:
* [libsodium](https://libsodium.org/) (*optional*)
* [zig](https://ziglang.org)
Compilation with libsodium:
Compilation with libsodium, dynamically linked (libsodium will need to be installed on the system for the command to run):
$ zig build -Drelease
Compilation without libsodium:
Compilation with libsodium, statically linked (libsodium will only be needed for compilation):
$ zig build -Drelease -Dstatic
Compilation without libsodium, no dependencies:
$ zig build -Drelease -Dwithout_libsodium