File tree 2 files changed +7
-1
lines changed
2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -158,6 +158,7 @@ jobs:
158
158
- uses : Swatinem/rust-cache@v2
159
159
- run : cargo test --no-run --target=aarch64-apple-darwin --features=std
160
160
- run : cargo test --no-run --target=aarch64-apple-ios --features=std
161
+ - run : cargo test --no-run --target=aarch64-apple-watchos-sim -Zbuild-std --features=std
161
162
162
163
cross-link :
163
164
name : Cross Build/Link
@@ -273,6 +274,7 @@ jobs:
273
274
aarch64-kmc-solid_asp3,
274
275
armv6k-nintendo-3ds,
275
276
riscv32imc-esp-espidf,
277
+ aarch64-apple-tvos,
276
278
]
277
279
include :
278
280
# Supported tier 3 targets without libstd support
@@ -287,6 +289,10 @@ jobs:
287
289
features : ["rdrand"]
288
290
- target : x86_64-unknown-l4re-uclibc
289
291
features : ["rdrand"]
292
+ # `std` support still in progress. Can be moved up with the other
293
+ # apple targets after https://github.com/rust-lang/rust/pull/103503
294
+ - target : aarch64-apple-tvos
295
+ features : []
290
296
steps :
291
297
- uses : actions/checkout@v3
292
298
- uses : dtolnay/rust-toolchain@nightly # Required to build libcore
Original file line number Diff line number Diff line change @@ -18,7 +18,7 @@ compiler_builtins = { version = "0.1", optional = true }
18
18
core = { version = " 1.0" , optional = true , package = " rustc-std-workspace-core" }
19
19
20
20
[target .'cfg(unix)' .dependencies ]
21
- libc = { version = " 0.2.128 " , default-features = false }
21
+ libc = { version = " 0.2.136 " , default-features = false }
22
22
23
23
[target .'cfg(target_os = "wasi")' .dependencies ]
24
24
wasi = { version = " 0.11" , default-features = false }
You can’t perform that action at this time.
0 commit comments