diff options
| author | BlackHoleFox <blackholefoxdev@gmail.com> | 2022-11-13 17:25:56 -0600 |
|---|---|---|
| committer | BlackHoleFox <blackholefoxdev@gmail.com> | 2023-09-23 19:14:25 -0500 |
| commit | 2044a2d7fa1de37aef704443dc127e5072a5d04c (patch) | |
| tree | 70086047ccc92046b97cde25a5f99ab8ae67dc6d | |
| parent | 3b52befdcec6b43163c937ed6e842c1c49846052 (diff) | |
| download | rust-2044a2d7fa1de37aef704443dc127e5072a5d04c.tar.gz rust-2044a2d7fa1de37aef704443dc127e5072a5d04c.zip | |
Raise minimum supported tvOS version to 10.0
| -rw-r--r-- | compiler/rustc_target/src/spec/apple_base.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_target/src/spec/apple_base.rs b/compiler/rustc_target/src/spec/apple_base.rs index 9ed06b73197..7a666eea437 100644 --- a/compiler/rustc_target/src/spec/apple_base.rs +++ b/compiler/rustc_target/src/spec/apple_base.rs @@ -322,7 +322,7 @@ pub fn ios_sim_llvm_target(arch: Arch) -> String { fn tvos_deployment_target() -> (u32, u32) { // If you are looking for the default deployment target, prefer `rustc --print deployment-target`. - from_set_deployment_target("TVOS_DEPLOYMENT_TARGET").unwrap_or((7, 0)) + from_set_deployment_target("TVOS_DEPLOYMENT_TARGET").unwrap_or((10, 0)) } fn tvos_lld_platform_version() -> String { |
