Skip to content

Commit 0780889

Browse files
authored
Rollup merge of #90499 - rusticstuff:macos-target-fixes, r=petrochenkov
Link with default MACOSX_DEPLOYMENT_TARGET if not otherwise specified. This PR sets the MACOSX_DEPLOYMENT_TARGET environment variable during the linking stage to our default, if it is not specified. This way it matches the deployment target we pass to llvm. If not set the the linker uses Xcode or Xcode commandline tools default which varies by version. Fixes #90342, #91082. Drive-by fixes to make Rust behave more like clang: * Default to 11.0 deployment target for ARM64 which is the earliest version that had support for it. * Set the llvm target to `arm64-apple-macosx<deployment target>` instead of `aarch64-apple-macosx<deployment target>`.
2 parents 90dd7c0 + b376f56 commit 0780889

File tree

4 files changed

+30
-9
lines changed

4 files changed

+30
-9
lines changed

compiler/rustc_target/src/spec/aarch64_apple_darwin.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -9,19 +9,19 @@ pub fn target() -> Target {
99
base.supported_sanitizers = SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::THREAD;
1010

1111
base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-arch".to_string(), "arm64".to_string()]);
12+
base.link_env.extend(super::apple_base::macos_link_env("arm64"));
1213
base.link_env_remove.extend(super::apple_base::macos_link_env_remove());
1314

1415
// Clang automatically chooses a more specific target based on
1516
// MACOSX_DEPLOYMENT_TARGET. To enable cross-language LTO to work
1617
// correctly, we do too.
17-
let arch = "aarch64";
18-
let llvm_target = super::apple_base::macos_llvm_target(&arch);
18+
let llvm_target = super::apple_base::macos_llvm_target("arm64");
1919

2020
Target {
2121
llvm_target,
2222
pointer_width: 64,
2323
data_layout: "e-m:o-i64:64-i128:128-n32:64-S128".to_string(),
24-
arch: arch.to_string(),
24+
arch: "aarch64".to_string(),
2525
options: TargetOptions {
2626
mcount: "\u{1}mcount".to_string(),
2727
frame_pointer: FramePointer::NonLeaf,

compiler/rustc_target/src/spec/apple_base.rs

+25-6
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,10 @@ pub fn opts(os: &str) -> TargetOptions {
1313
// warnings about the usage of ELF TLS.
1414
//
1515
// Here we detect what version is being requested, defaulting to 10.7. ELF
16-
// TLS is flagged as enabled if it looks to be supported.
17-
let version = macos_deployment_target();
16+
// TLS is flagged as enabled if it looks to be supported. The architecture
17+
// only matters for default deployment target which is 11.0 for ARM64 and
18+
// 10.7 for everything else.
19+
let has_elf_tls = macos_deployment_target("x86_64") >= (10, 7);
1820

1921
TargetOptions {
2022
os: os.to_string(),
@@ -31,7 +33,7 @@ pub fn opts(os: &str) -> TargetOptions {
3133
has_rpath: true,
3234
dll_suffix: ".dylib".to_string(),
3335
archive_format: "darwin".to_string(),
34-
has_elf_tls: version >= (10, 7),
36+
has_elf_tls,
3537
abi_return_struct_as_int: true,
3638
emit_debug_gdb_scripts: false,
3739
eh_frame_header: false,
@@ -63,15 +65,32 @@ fn deployment_target(var_name: &str) -> Option<(u32, u32)> {
6365
.and_then(|(a, b)| a.parse::<u32>().and_then(|a| b.parse::<u32>().map(|b| (a, b))).ok())
6466
}
6567

66-
fn macos_deployment_target() -> (u32, u32) {
67-
deployment_target("MACOSX_DEPLOYMENT_TARGET").unwrap_or((10, 7))
68+
fn macos_default_deployment_target(arch: &str) -> (u32, u32) {
69+
if arch == "arm64" { (11, 0) } else { (10, 7) }
70+
}
71+
72+
fn macos_deployment_target(arch: &str) -> (u32, u32) {
73+
deployment_target("MACOSX_DEPLOYMENT_TARGET")
74+
.unwrap_or_else(|| macos_default_deployment_target(arch))
6875
}
6976

7077
pub fn macos_llvm_target(arch: &str) -> String {
71-
let (major, minor) = macos_deployment_target();
78+
let (major, minor) = macos_deployment_target(arch);
7279
format!("{}-apple-macosx{}.{}.0", arch, major, minor)
7380
}
7481

82+
pub fn macos_link_env(arch: &str) -> Vec<(String, String)> {
83+
// Use the default deployment target for linking just as with the LLVM target if not
84+
// specified via MACOSX_DEPLOYMENT_TARGET, otherwise the system linker would use its
85+
// default which varies with Xcode version.
86+
if env::var("MACOSX_DEPLOYMENT_TARGET").is_err() {
87+
let default = macos_default_deployment_target(arch);
88+
vec![("MACOSX_DEPLOYMENT_TARGET".to_string(), format!("{}.{}", default.0, default.1))]
89+
} else {
90+
vec![]
91+
}
92+
}
93+
7594
pub fn macos_link_env_remove() -> Vec<String> {
7695
let mut env_remove = Vec::with_capacity(2);
7796
// Remove the `SDKROOT` environment variable if it's clearly set for the wrong platform, which

compiler/rustc_target/src/spec/i686_apple_darwin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ pub fn target() -> Target {
55
base.cpu = "yonah".to_string();
66
base.max_atomic_width = Some(64);
77
base.pre_link_args.insert(LinkerFlavor::Gcc, vec!["-m32".to_string()]);
8+
base.link_env.extend(super::apple_base::macos_link_env("i686"));
89
base.link_env_remove.extend(super::apple_base::macos_link_env_remove());
910
// don't use probe-stack=inline-asm until rust#83139 and rust#84667 are resolved
1011
base.stack_probes = StackProbeType::Call;

compiler/rustc_target/src/spec/x86_64_apple_darwin.rs

+1
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@ pub fn target() -> Target {
1010
LinkerFlavor::Gcc,
1111
vec!["-m64".to_string(), "-arch".to_string(), "x86_64".to_string()],
1212
);
13+
base.link_env.extend(super::apple_base::macos_link_env("x86_64"));
1314
base.link_env_remove.extend(super::apple_base::macos_link_env_remove());
1415
// don't use probe-stack=inline-asm until rust#83139 and rust#84667 are resolved
1516
base.stack_probes = StackProbeType::Call;

0 commit comments

Comments
 (0)