build: use ReleaseFast for opus decoding

Signed-off-by: Stephen Gutekanst <stephen@hexops.com>
This commit is contained in:
Stephen Gutekanst 2024-05-18 17:06:20 +02:00
parent 205a1f33db
commit 18e32ee6bf

View file

@ -100,7 +100,7 @@ pub fn build(b: *std.Build) !void {
if (b.lazyDependency("mach_opus", .{ if (b.lazyDependency("mach_opus", .{
.target = target, .target = target,
.optimize = optimize, .optimize = .ReleaseFast,
})) |dep| { })) |dep| {
module.addImport("mach-opus", dep.module("mach-opus")); module.addImport("mach-opus", dep.module("mach-opus"));
} }