this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

build: Don't use `ReleaseSafe` for `translate_c`

+4 -1
+4 -1
build.zig
··· 23 23 24 24 const translate_c = b.addTranslateC(.{ 25 25 .root_source_file = b.path("src/alsa.h"), 26 - .optimize = optimize, 26 + .optimize = switch (optimize) { 27 + .ReleaseSafe => .ReleaseFast, 28 + else => |v| v, 29 + }, 27 30 .target = target, 28 31 }); 29 32 translate_c.linkSystemLibrary("asound", .{}); // change to false when going crossplatform