| use crate::spec::{FramePointer, LinkerFlavor, SanitizerSet, Target, TargetOptions}; |
| |
| pub fn target() -> Target { |
| let mut base = super::apple_base::opts("macos"); |
| base.cpu = "apple-a14".to_string(); |
| base.max_atomic_width = Some(128); |
| |
| // FIXME: The leak sanitizer currently fails the tests, see #88132. |
| base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD; |
| |
| base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-arch".to_string(), "arm64".to_string()]); |
| base.link_env_remove.extend(super::apple_base::macos_link_env_remove()); |
| |
| // Clang automatically chooses a more specific target based on |
| // MACOSX_DEPLOYMENT_TARGET. To enable cross-language LTO to work |
| // correctly, we do too. |
| let llvm_target = super::apple_base::macos_llvm_target("arm64"); |
| |
| Target { |
| llvm_target, |
| pointer_width: 64, |
| data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".to_string(), |
| arch: "aarch64".to_string(), |
| options: TargetOptions { |
| mcount: "\u{1}mcount".to_string(), |
| frame_pointer: FramePointer::NonLeaf, |
| ..base |
| }, |
| } |
| } |