Skip to content

Commit 1ef1af1

Browse files
committedNov 1, 2024
Emit diagnostics for incorrect deployment targets
1 parent e75a7dd commit 1ef1af1

File tree

5 files changed

+57
-12
lines changed

5 files changed

+57
-12
lines changed
 

‎compiler/rustc_codegen_ssa/messages.ftl

+6
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,12 @@ codegen_ssa_L4Bender_exporting_symbols_unimplemented = exporting symbols not imp
22
33
codegen_ssa_add_native_library = failed to add native library {$library_path}: {$error}
44
5+
codegen_ssa_apple_deployment_target_invalid =
6+
failed to parse deployment target specified in {$env_var}: {$error}
7+
8+
codegen_ssa_apple_deployment_target_too_low =
9+
deployment target in {$env_var} was set to {$version}, but the minimum supported by `rustc` is {$os_min}
10+
511
codegen_ssa_apple_sdk_error_sdk_path = failed to get {$sdk_name} SDK path: {$error}
612
713
codegen_ssa_archive_build_failure = failed to build archive at `{$path}`: {$error}

‎compiler/rustc_codegen_ssa/src/back/apple.rs

+37-9
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,12 @@
11
use std::env;
2+
use std::fmt::{Display, from_fn};
23
use std::num::ParseIntError;
34

45
use rustc_session::Session;
56
use rustc_target::spec::Target;
67

8+
use crate::errors::AppleDeploymentTarget;
9+
710
#[cfg(test)]
811
mod tests;
912

@@ -42,6 +45,17 @@ fn parse_version(version: &str) -> Result<OSVersion, ParseIntError> {
4245
}
4346
}
4447

48+
pub fn pretty_version(version: OSVersion) -> impl Display {
49+
let (major, minor, patch) = version;
50+
from_fn(move |f| {
51+
write!(f, "{major}.{minor}")?;
52+
if patch != 0 {
53+
write!(f, ".{patch}")?;
54+
}
55+
Ok(())
56+
})
57+
}
58+
4559
/// Minimum operating system versions currently supported by `rustc`.
4660
fn os_minimum_deployment_target(os: &str) -> OSVersion {
4761
// When bumping a version in here, remember to update the platform-support docs too.
@@ -98,17 +112,31 @@ fn deployment_target_env_var(os: &str) -> &'static str {
98112
/// minimum version supported by `rustc`.
99113
pub fn deployment_target(sess: &Session) -> OSVersion {
100114
let min = minimum_deployment_target(&sess.target);
115+
let env_var = deployment_target_env_var(&sess.target.os);
101116

102-
if let Ok(deployment_target) = env::var(deployment_target_env_var(&sess.target.os)) {
117+
if let Ok(deployment_target) = env::var(env_var) {
103118
match parse_version(&deployment_target) {
104-
// It is common that the deployment target is set too low, e.g. on macOS Aarch64 to also
105-
// target older x86_64, the user may set a lower deployment target than supported.
106-
//
107-
// To avoid such issues, we silently raise the deployment target here.
108-
// FIXME: We want to show a warning when `version < os_min`.
109-
Ok(version) => version.max(min),
110-
// FIXME: Report erroneous environment variable to user.
111-
Err(_) => min,
119+
Ok(version) => {
120+
let os_min = os_minimum_deployment_target(&sess.target.os);
121+
// It is common that the deployment target is set a bit too low, for example on
122+
// macOS Aarch64 to also target older x86_64. So we only want to warn when variable
123+
// is lower than the minimum OS supported by rustc, not when the variable is lower
124+
// than the minimum for a specific target.
125+
if version < os_min {
126+
sess.dcx().emit_warn(AppleDeploymentTarget::TooLow {
127+
env_var,
128+
version: pretty_version(version).to_string(),
129+
os_min: pretty_version(os_min).to_string(),
130+
});
131+
}
132+
133+
// Raise the deployment target to the minimum supported.
134+
version.max(min)
135+
}
136+
Err(error) => {
137+
sess.dcx().emit_err(AppleDeploymentTarget::Invalid { env_var, error });
138+
min
139+
}
112140
}
113141
} else {
114142
// If no deployment target variable is set, default to the minimum found above.

‎compiler/rustc_codegen_ssa/src/errors.rs

+9
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
33
use std::borrow::Cow;
44
use std::io::Error;
5+
use std::num::ParseIntError;
56
use std::path::{Path, PathBuf};
67
use std::process::ExitStatus;
78

@@ -539,6 +540,14 @@ pub(crate) struct UnsupportedArch<'a> {
539540
pub os: &'a str,
540541
}
541542

543+
#[derive(Diagnostic)]
544+
pub(crate) enum AppleDeploymentTarget {
545+
#[diag(codegen_ssa_apple_deployment_target_invalid)]
546+
Invalid { env_var: &'static str, error: ParseIntError },
547+
#[diag(codegen_ssa_apple_deployment_target_too_low)]
548+
TooLow { env_var: &'static str, version: String, os_min: String },
549+
}
550+
542551
#[derive(Diagnostic)]
543552
pub(crate) enum AppleSdkRootError<'a> {
544553
#[diag(codegen_ssa_apple_sdk_error_sdk_path)]

‎compiler/rustc_codegen_ssa/src/lib.rs

+1
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@
66
#![doc(rust_logo)]
77
#![feature(assert_matches)]
88
#![feature(box_patterns)]
9+
#![feature(debug_closure_helpers)]
910
#![feature(file_buffered)]
1011
#![feature(if_let_guard)]
1112
#![feature(let_chains)]

‎compiler/rustc_driver_impl/src/lib.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -857,9 +857,10 @@ fn print_crate_info(
857857
}
858858
DeploymentTarget => {
859859
if sess.target.is_like_osx {
860-
let (major, minor, patch) = apple::deployment_target(sess);
861-
let patch = if patch != 0 { format!(".{patch}") } else { String::new() };
862-
println_info!("deployment_target={major}.{minor}{patch}")
860+
println_info!(
861+
"deployment_target={}",
862+
apple::pretty_version(apple::deployment_target(sess))
863+
)
863864
} else {
864865
#[allow(rustc::diagnostic_outside_of_impl)]
865866
sess.dcx().fatal("only Apple targets currently support deployment version info")

0 commit comments

Comments
 (0)