Fixed a bug in the build file, fixed functions signature for aes and ed25519, made visibility changes in packet and made the enums needed for destination

This commit is contained in:
Gu://em_ 2026-06-26 16:22:01 +02:00
parent 693d7cfe51
commit b67ae9ec59
5 changed files with 67 additions and 17 deletions

View file

@ -23,7 +23,7 @@ pub fn build(b: *std.Build) void {
// Configuration
.target = b.standardTargetOptions(.{}),
.optimize = b.standardOptimizeOption(.{}),
.linkage = if (opt_shared) .static else .dynamic,
.linkage = if (opt_shared) .dynamic else .static,
.test_step = opt_test
};