Skip to content

Commit 0f90aed

Browse files
authored
Use apple-m1 as target CPU for aarch64-apple-darwin.
1 parent 1767585 commit 0f90aed

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/aarch64_apple_darwin.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ use crate::spec::{FramePointer, SanitizerSet, Target, TargetOptions};
44
pub fn target() -> Target {
55
let arch = Arch::Arm64;
66
let mut base = opts("macos", arch);
7-
base.cpu = "apple-a14".into();
7+
base.cpu = "apple-m1".into();
88
base.max_atomic_width = Some(128);
99

1010
// FIXME: The leak sanitizer currently fails the tests, see #88132.

0 commit comments

Comments
 (0)