Add apple tvos support

This commit is contained in:
Luis Cruz 2023-07-10 16:50:38 +01:00 committed by Brian Smith
parent c8e4b23af8
commit 8387c3953e
2 changed files with 2 additions and 1 deletions

View File

@ -279,7 +279,7 @@ const LINUX_ABI: &[&str] = &[
/// Operating systems that have the same ABI as macOS on every architecture
/// mentioned in `ASM_TARGETS`.
const MACOS_ABI: &[&str] = &["ios", "macos"];
const MACOS_ABI: &[&str] = &["ios", "macos", "tvos"];
const WINDOWS: &str = "windows";

View File

@ -131,6 +131,7 @@ impl crate::sealed::Sealed for SystemRandom {}
target_os = "haiku",
target_os = "illumos",
target_os = "ios",
target_os = "tvos",
target_os = "linux",
target_os = "macos",
target_os = "netbsd",