-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apple: Rebuild when deployment target changes
Rebuild when the `*_DEPLOYMENT_TARGET` variables change when building Apple targets. This is done by: 1. Adding it as a tracked variable to `Options` to make sure it clears the incremental cache. 2. Emitting the variable in `--emit=dep-info` (`.d`) files, so that Cargo can pick up changes to it, and correctly trigger a rebuild.
- Loading branch information
Showing
12 changed files
with
196 additions
and
48 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
fn main() {} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,121 @@ | ||
//! Test codegen when setting deployment targets on Apple platforms. | ||
//! | ||
//! This is important since its a compatibility hazard. The linker will | ||
//! generate load commands differently based on what minimum OS it can assume. | ||
//! | ||
//! See https://github.com/rust-lang/rust/pull/105123. | ||
|
||
//@ only-apple | ||
|
||
use run_make_support::{cmd, rustc, target, apple_os}; | ||
|
||
/// Run vtool to check the `minos` field in LC_BUILD_VERSION. | ||
/// | ||
/// On lower deployment targets, LC_VERSION_MIN_MACOSX, LC_VERSION_MIN_IPHONEOS and similar | ||
/// are used instead of LC_BUILD_VERSION - these have a `version` field, so also check that. | ||
fn minos(file: &str, version: &str) { | ||
cmd("vtool").arg("-show-build").arg(file).run().assert_stdout_contains_regex(format!("(minos|version) {version}")); | ||
} | ||
|
||
fn main() { | ||
let (env_var, example_version, higher_example_version) = match apple_os() { | ||
"macos" => ("MACOSX_DEPLOYMENT_TARGET", "12.0", "13.0"), | ||
"ios" => ("IPHONEOS_DEPLOYMENT_TARGET", "14.0", "15.0"), | ||
"watchos" => ("WATCHOS_DEPLOYMENT_TARGET", "7.0", "9.0"), | ||
"tvos" => ("TVOS_DEPLOYMENT_TARGET", "14.0", "15.0"), | ||
"visionos" => ("XROS_DEPLOYMENT_TARGET", "1.1", "1.2"), | ||
_ => unreachable!(), | ||
}; | ||
let default_version = rustc().target(target()).env_remove(env_var).print("deployment-target").run().stdout_utf8(); | ||
let default_version = default_version.strip_prefix("deployment_target=").unwrap().trim(); | ||
|
||
// Ensure that the versions we test with are not the default | ||
assert_ne!(default_version, example_version); | ||
assert_ne!(default_version, higher_example_version); | ||
|
||
// Test that version makes it to the object file. | ||
{ | ||
let mut rustc = rustc(); | ||
rustc.target(target()); | ||
rustc.crate_type("lib"); | ||
rustc.emit("obj"); | ||
rustc.input("foo.rs"); | ||
rustc.output("foo.o"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("foo.o", example_version); | ||
|
||
rustc.env_remove(env_var).run(); | ||
minos("foo.o", default_version); | ||
} | ||
|
||
// Test that version makes it to the linker when linking dylibs. | ||
{ | ||
let mut rustc = rustc(); | ||
rustc.target(target()); | ||
rustc.crate_type("dylib"); | ||
rustc.input("foo.rs"); | ||
rustc.output("libfoo.dylib"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("libfoo.dylib", example_version); | ||
|
||
// FIXME(madsmtm): Deployment target is not currently passed properly to linker | ||
// rustc.env_remove(env_var).run(); | ||
// minos("libfoo.dylib", default_version); | ||
|
||
// Test with ld64 instead | ||
rustc.arg("-Clinker-flavor=ld"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("libfoo.dylib", example_version); | ||
|
||
rustc.env_remove(env_var).run(); | ||
minos("libfoo.dylib", default_version); | ||
} | ||
|
||
// Test that version makes it to the linker when linking executables. | ||
{ | ||
let mut rustc = rustc(); | ||
rustc.target(target()); | ||
rustc.crate_type("bin"); | ||
rustc.input("foo.rs"); | ||
rustc.output("foo"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("foo", example_version); | ||
|
||
// FIXME(madsmtm): Deployment target is not currently passed properly to linker | ||
// rustc.env_remove(env_var).run(); | ||
// minos("foo", default_version); | ||
|
||
// Test with ld64 instead | ||
rustc.arg("-Clinker-flavor=ld"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("foo", example_version); | ||
|
||
rustc.env_remove(env_var).run(); | ||
minos("foo", default_version); | ||
} | ||
|
||
// Test that changing the deployment target busts the incremental cache. | ||
{ | ||
let mut rustc = rustc(); | ||
rustc.target(target()); | ||
rustc.incremental("incremental"); | ||
rustc.crate_type("lib"); | ||
rustc.emit("obj"); | ||
rustc.input("foo.rs"); | ||
rustc.output("foo.o"); | ||
|
||
rustc.env(env_var, example_version).run(); | ||
minos("foo.o", example_version); | ||
|
||
rustc.env(env_var, higher_example_version).run(); | ||
minos("foo.o", higher_example_version); | ||
|
||
rustc.env_remove(env_var).run(); | ||
minos("foo.o", default_version); | ||
} | ||
} |
This file was deleted.
Oops, something went wrong.
4 changes: 0 additions & 4 deletions
4
tests/run-make/macos-deployment-target/with_deployment_target.rs
This file was deleted.
Oops, something went wrong.