Skip to content

Commit

Permalink
fix: update exact number of flags
Browse files Browse the repository at this point in the history
  • Loading branch information
tensorush committed Jul 19, 2024
1 parent 84c3167 commit 77db221
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 @@ -23,7 +23,7 @@ pub fn build(b: *std.Build) void {
.optimize = optimize,
});

var flags = std.BoundedArray([]const u8, 3){};
var flags = std.BoundedArray([]const u8, 6){};
flags.appendSliceAssumeCapacity(&FLAGS);
if (target.result.cpu.arch.isX86()) {
flags.appendSliceAssumeCapacity(&.{ "-msse2", "-mssse3" });
Expand Down

0 comments on commit 77db221

Please sign in to comment.