diff options
author | 2022-08-08 03:54:14 -0700 | |
---|---|---|
committer | 2022-08-08 03:54:14 -0700 | |
commit | 98c2d20ab0168218d66bde4ef0afb80700f9373b (patch) | |
tree | 18627341bed6885e16f22b7efd5878efa0198ff4 | |
parent | 84e76ce4ad19d6e57c35a21981c9ea63dc5ec92c (diff) | |
download | bun-98c2d20ab0168218d66bde4ef0afb80700f9373b.tar.gz bun-98c2d20ab0168218d66bde4ef0afb80700f9373b.tar.zst bun-98c2d20ab0168218d66bde4ef0afb80700f9373b.zip |
Flip boolean
-rw-r--r-- | build.zig | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -360,7 +360,7 @@ pub fn build(b: *std.build.Builder) !void { ); if (is_baseline) { - obj.target.cpu_model = .{ .explicit = &std.Target.x86.cpu.westmere }; + obj.target.cpu_model = .{ .explicit = &std.Target.x86.cpu.x86_64_v2 }; } else if (arch.isX86()) { obj.target.cpu_model = .{ .explicit = &std.Target.x86.cpu.haswell }; } else if (arch.isAARCH64() and target.isDarwin()) { @@ -392,7 +392,7 @@ pub fn build(b: *std.build.Builder) !void { obj.strip = false; obj.bundle_compiler_rt = true; - obj.omit_frame_pointer = mode == .Debug; + obj.omit_frame_pointer = mode != .Debug; b.default_step.dependOn(&obj.step); |