We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent df96402 commit b18ff59Copy full SHA for b18ff59
compiler/rustc_target/src/spec/apple/tests.rs
@@ -30,6 +30,9 @@ fn macos_link_environment_unmodified() {
30
for target in all_macos_targets {
31
// macOS targets should only remove information for cross-compiling, but never
32
// for the host.
33
- assert_eq!(target.link_env_remove, crate::spec::cvs!["IPHONEOS_DEPLOYMENT_TARGET"]);
+ assert_eq!(
34
+ target.link_env_remove,
35
+ crate::spec::cvs!["IPHONEOS_DEPLOYMENT_TARGET", "TVOS_DEPLOYMENT_TARGET"],
36
+ );
37
}
38
0 commit comments