Commit 77544683dd
lib/init-exe/build.zig
@@ -13,7 +13,7 @@ pub fn build(b: *std.Build) void {
// Standard optimization options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
// set a preferred release mode, allowing the user to decide how to optimize.
- const optimize = b.standardOptimizeOption();
+ const optimize = b.standardOptimizeOption(.{});
const exe = b.addExecutable(.{
.name = "$",
lib/init-lib/build.zig
@@ -13,7 +13,7 @@ pub fn build(b: *std.Build) void {
// Standard optimization options allow the person running `zig build` to select
// between Debug, ReleaseSafe, ReleaseFast, and ReleaseSmall. Here we do not
// set a preferred release mode, allowing the user to decide how to optimize.
- const optimize = b.standardOptimizeOption();
+ const optimize = b.standardOptimizeOption(.{});
const lib = b.addStaticLibrary(.{
.name = "$",