diff --git a/build.zig b/build.zig index 55d47354..48602824 100644 --- a/build.zig +++ b/build.zig @@ -22,8 +22,6 @@ pub fn build(b: *std.build.Builder) !void { .unversioned, ); const static = b.addStaticLibrary("sodium", null); - shared.strip = true; - static.strip = true; const libs_ = [_]*LibExeObjStep{ shared, static }; const libs = if (target.getOsTag() == .wasi) libs_[1..] else libs_[0..];