Skip to content

Commit 7c7372b

Browse files
committed
Auto merge of #129369 - madsmtm:apple-cc-linker-pass-target, r=jieyouxu
Pass deployment target when linking with CC on Apple targets This PR effectively implements what's also being considered in the `cc` crate [here](rust-lang/cc-rs#1030 (comment)), that is: - When linking macOS targets with CC, pass the `-mmacosx-version-min=.` option to specify the desired deployment target. Also, no longer pass `-m32`/`-m64`, these are redundant since we already pass `-arch`. - When linking with CC on iOS, tvOS, watchOS and visionOS, only pass `-target` (we assume for these targets that CC forwards to Clang). This is required to get the linker to emit the correct `LC_BUILD_VERSION` of the final binary. See #129432 for more motivation behind this change. r? compiler CC `@BlackHoleFox`
2 parents 1f51450 + dd35398 commit 7c7372b

File tree

5 files changed

+38
-16
lines changed

5 files changed

+38
-16
lines changed

compiler/rustc_target/src/spec/base/apple/mod.rs

+29-1
Original file line numberDiff line numberDiff line change
@@ -168,14 +168,42 @@ fn pre_link_args(os: &'static str, arch: Arch, abi: TargetAbi) -> LinkArgs {
168168
["-platform_version".into(), platform_name, min_version, sdk_version].into_iter(),
169169
);
170170

171-
if abi != TargetAbi::MacCatalyst {
171+
// We need to communicate four things to the C compiler to be able to link:
172+
// - The architecture.
173+
// - The operating system (and that it's an Apple platform).
174+
// - The deployment target.
175+
// - The environment / ABI.
176+
//
177+
// We'd like to use `-target` everywhere, since that can uniquely
178+
// communicate all of these, but that doesn't work on GCC, and since we
179+
// don't know whether the `cc` compiler is Clang, GCC, or something else,
180+
// we fall back to other options that also work on GCC when compiling for
181+
// macOS.
182+
//
183+
// Targets other than macOS are ill-supported by GCC (it doesn't even
184+
// support e.g. `-miphoneos-version-min`), so in those cases we can fairly
185+
// safely use `-target`. See also the following, where it is made explicit
186+
// that the recommendation by LLVM developers is to use `-target`:
187+
// <https://github.com/llvm/llvm-project/issues/88271>
188+
if os == "macos" {
189+
// `-arch` communicates the architecture.
190+
//
172191
// CC forwards the `-arch` to the linker, so we use the same value
173192
// here intentionally.
174193
add_link_args(
175194
&mut args,
176195
LinkerFlavor::Darwin(Cc::Yes, Lld::No),
177196
&["-arch", arch.ld_arch()],
178197
);
198+
// The presence of `-mmacosx-version-min` makes CC default to macOS,
199+
// and it sets the deployment target.
200+
let (major, minor, patch) = deployment_target(os, arch, abi);
201+
let opt = format!("-mmacosx-version-min={major}.{minor}.{patch}").into();
202+
add_link_args_iter(&mut args, LinkerFlavor::Darwin(Cc::Yes, Lld::No), [opt].into_iter());
203+
// macOS has no environment, so with these two, we've told CC all the
204+
// desired parameters.
205+
//
206+
// We avoid `-m32`/`-m64`, as this is already encoded by `-arch`.
179207
} else {
180208
add_link_args_iter(
181209
&mut args,

compiler/rustc_target/src/spec/targets/i686_apple_darwin.rs

+2-4
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
use crate::spec::base::apple::{base, Arch, TargetAbi};
2-
use crate::spec::{Cc, FramePointer, LinkerFlavor, Lld, Target, TargetOptions};
2+
use crate::spec::{FramePointer, Target, TargetOptions};
33

44
pub(crate) fn target() -> Target {
5-
let (mut opts, llvm_target, arch) = base("macos", Arch::I686, TargetAbi::Normal);
6-
opts.add_pre_link_args(LinkerFlavor::Darwin(Cc::Yes, Lld::No), &["-m32"]);
7-
5+
let (opts, llvm_target, arch) = base("macos", Arch::I686, TargetAbi::Normal);
86
Target {
97
llvm_target,
108
metadata: crate::spec::TargetMetadata {

compiler/rustc_target/src/spec/targets/x86_64_apple_darwin.rs

+2-3
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,8 @@
11
use crate::spec::base::apple::{base, Arch, TargetAbi};
2-
use crate::spec::{Cc, FramePointer, LinkerFlavor, Lld, SanitizerSet, Target, TargetOptions};
2+
use crate::spec::{FramePointer, SanitizerSet, Target, TargetOptions};
33

44
pub(crate) fn target() -> Target {
5-
let (mut opts, llvm_target, arch) = base("macos", Arch::X86_64, TargetAbi::Normal);
6-
opts.add_pre_link_args(LinkerFlavor::Darwin(Cc::Yes, Lld::No), &["-m64"]);
5+
let (opts, llvm_target, arch) = base("macos", Arch::X86_64, TargetAbi::Normal);
76
Target {
87
llvm_target,
98
metadata: crate::spec::TargetMetadata {

compiler/rustc_target/src/spec/targets/x86_64h_apple_darwin.rs

+1-2
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,10 @@
11
use crate::spec::base::apple::{base, Arch, TargetAbi};
2-
use crate::spec::{Cc, FramePointer, LinkerFlavor, Lld, SanitizerSet, Target, TargetOptions};
2+
use crate::spec::{FramePointer, SanitizerSet, Target, TargetOptions};
33

44
pub(crate) fn target() -> Target {
55
let (mut opts, llvm_target, arch) = base("macos", Arch::X86_64h, TargetAbi::Normal);
66
opts.max_atomic_width = Some(128);
77
opts.frame_pointer = FramePointer::Always;
8-
opts.add_pre_link_args(LinkerFlavor::Darwin(Cc::Yes, Lld::No), &["-m64"]);
98
opts.supported_sanitizers =
109
SanitizerSet::ADDRESS | SanitizerSet::CFI | SanitizerSet::LEAK | SanitizerSet::THREAD;
1110

tests/run-make/apple-deployment-target/rmake.rs

+4-6
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,8 @@ fn main() {
8181
rustc().env(env_var, example_version).run();
8282
minos("libfoo.dylib", example_version);
8383

84-
// FIXME(madsmtm): Deployment target is not currently passed properly to linker
85-
// rustc().env_remove(env_var).run();
86-
// minos("libfoo.dylib", default_version);
84+
rustc().env_remove(env_var).run();
85+
minos("libfoo.dylib", default_version);
8786

8887
// Test with ld64 instead
8988

@@ -110,9 +109,8 @@ fn main() {
110109
rustc().env(env_var, example_version).run();
111110
minos("foo", example_version);
112111

113-
// FIXME(madsmtm): Deployment target is not currently passed properly to linker
114-
// rustc().env_remove(env_var).run();
115-
// minos("foo", default_version);
112+
rustc().env_remove(env_var).run();
113+
minos("foo", default_version);
116114
}
117115

118116
// Test with ld64 instead

0 commit comments

Comments
 (0)