Skip to content

Commit 2044a2d

Browse files
committed
Raise minimum supported tvOS version to 10.0
1 parent 3b52bef commit 2044a2d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compiler/rustc_target/src/spec/apple_base.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,7 @@ pub fn ios_sim_llvm_target(arch: Arch) -> String {
322322

323323
fn tvos_deployment_target() -> (u32, u32) {
324324
// If you are looking for the default deployment target, prefer `rustc --print deployment-target`.
325-
from_set_deployment_target("TVOS_DEPLOYMENT_TARGET").unwrap_or((7, 0))
325+
from_set_deployment_target("TVOS_DEPLOYMENT_TARGET").unwrap_or((10, 0))
326326
}
327327

328328
fn tvos_lld_platform_version() -> String {

0 commit comments

Comments
 (0)