Skip to content

Commit

Permalink
fix(build): remove preferred optimization mode from build configuration
Browse files Browse the repository at this point in the history
- Updated the build configuration to use default optimization settings
- This change simplifies the build process and allows for more flexibility in optimization choices
  • Loading branch information
darkyzhou committed Sep 17, 2024
1 parent 0bcedca commit c131436
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.zig
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ const std = @import("std");

pub fn build(b: *std.Build) void {
const target = b.standardTargetOptions(.{});
const optimize = b.standardOptimizeOption(.{ .preferred_optimize_mode = .ReleaseSmall });
const optimize = b.standardOptimizeOption(.{});

const exe = b.addExecutable(.{
.name = "mcm",
Expand Down

0 comments on commit c131436

Please sign in to comment.