diff options
author | 2022-07-24 22:21:07 -0700 | |
---|---|---|
committer | 2022-07-24 22:21:07 -0700 | |
commit | dd0dafbeecc198d065870fb65714b30dc79d67b0 (patch) | |
tree | b3eedf8a12986bfc798405a12a28607cab545f0c /build.zig | |
parent | 3ae3cdaa6404e1cfc0d3581d097d9a5b19993304 (diff) | |
download | bun-dd0dafbeecc198d065870fb65714b30dc79d67b0.tar.gz bun-dd0dafbeecc198d065870fb65714b30dc79d67b0.tar.zst bun-dd0dafbeecc198d065870fb65714b30dc79d67b0.zip |
[docker] Prepare for macOS releases
Diffstat (limited to 'build.zig')
-rw-r--r-- | build.zig | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -338,7 +338,7 @@ pub fn build(b: *std.build.Builder) !void { } else if (arch.isAARCH64() and target.isDarwin()) { obj.target.cpu_model = .{ .explicit = &std.Target.aarch64.cpu.apple_m1 }; } else if (arch.isAARCH64() and target.isLinux()) { - obj.target.cpu_model = .{ .explicit = &std.Target.aarch64.cpu.apple_m1 }; + obj.target.cpu_model = .{ .explicit = &std.Target.aarch64.cpu.generic }; } { |