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.
musl_v1_2_3
1 parent ecee472 commit 806d311Copy full SHA for 806d311
ci/verify-build.py
@@ -281,6 +281,10 @@ def test_target(cfg: Cfg, target: Target):
281
# Equivalent of _TIME_BITS=64
282
run(cmd, env=env | {"RUST_LIBC_UNSTABLE_GNU_TIME_BITS": "64"})
283
284
+ if "musl" in target_env:
285
+ # Check with breaking changes from musl, including 64-bit time_t on 32-bit
286
+ run(cmd, env=env | {"RUST_LIBC_UNSTABLE_MUSL_V1_2_3": "1"})
287
+
288
# Test again without default features, i.e. without `std`
289
run(cmd + ["--no-default-features"])
290
run(cmd + ["--no-default-features", "--features=extra_traits"])
0 commit comments