|
| 1 | +use crate::spec::{LinkerFlavor, Target, TargetOptions, TargetResult}; |
| 2 | + |
| 3 | +pub fn target() -> TargetResult { |
| 4 | + let mut base = super::apple_base::opts(); |
| 5 | + base.cpu = "apple-a12".to_string(); |
| 6 | + base.max_atomic_width = Some(128); |
| 7 | + base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-arch".to_string(), "arm64".to_string()]); |
| 8 | + |
| 9 | + base.link_env_remove.extend(super::apple_base::macos_link_env_remove()); |
| 10 | + |
| 11 | + // Clang automatically chooses a more specific target based on |
| 12 | + // MACOSX_DEPLOYMENT_TARGET. To enable cross-language LTO to work |
| 13 | + // correctly, we do too. |
| 14 | + let arch = "aarch64"; |
| 15 | + let llvm_target = super::apple_base::macos_llvm_target(&arch); |
| 16 | + |
| 17 | + Ok(Target { |
| 18 | + llvm_target, |
| 19 | + target_endian: "little".to_string(), |
| 20 | + target_pointer_width: "64".to_string(), |
| 21 | + target_c_int_width: "32".to_string(), |
| 22 | + data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".to_string(), |
| 23 | + arch: arch.to_string(), |
| 24 | + target_os: "macos".to_string(), |
| 25 | + target_env: String::new(), |
| 26 | + target_vendor: "apple".to_string(), |
| 27 | + linker_flavor: LinkerFlavor::Gcc, |
| 28 | + options: TargetOptions { target_mcount: "\u{1}mcount".to_string(), ..base }, |
| 29 | + }) |
| 30 | +} |
0 commit comments