File tree Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Expand file tree Collapse file tree 3 files changed +20
-2
lines changed Original file line number Diff line number Diff line change 9999 artifact-tag : offset-bits64
100100 env :
101101 RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
102+ - target : i686-unknown-linux-gnu
103+ docker : true
104+ os : ubuntu-24.04
105+ artifact-tag : time-bits64
106+ env :
107+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
102108 - target : x86_64-unknown-linux-gnu
103109 docker : true
104110 os : ubuntu-24.04
@@ -196,6 +202,10 @@ jobs:
196202 env :
197203 RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS : 64
198204 artifact-tag : offset-bits64
205+ - target : arm-unknown-linux-gnueabihf
206+ env :
207+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS : 64
208+ artifact-tag : time-bits64
199209 - target : aarch64-unknown-linux-musl
200210 env :
201211 RUST_LIBC_UNSTABLE_MUSL_V1_2_3 : 1
@@ -215,6 +225,10 @@ jobs:
215225 # env:
216226 # RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS: 64
217227 # artifact-tag: offset-bits64
228+ # - target: powerpc-unknown-linux-gnu
229+ # env:
230+ # RUST_LIBC_UNSTABLE_GNU_TIME_BITS: 64
231+ # artifact-tag: time-bits64
218232 timeout-minutes : 25
219233 env :
220234 TARGET : ${{ matrix.target }}
Original file line number Diff line number Diff line change @@ -44,6 +44,7 @@ run() {
4444 --env LIBC_CI \
4545 --env LIBC_CI_ZBUILD_STD \
4646 --env RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS \
47+ --env RUST_LIBC_UNSTABLE_GNU_TIME_BITS \
4748 --env CARGO_HOME=/cargo \
4849 --env CARGO_TARGET_DIR=/checkout/target \
4950 --volume " $CARGO_HOME " :/cargo \
Original file line number Diff line number Diff line change @@ -76,9 +76,12 @@ test_target() {
7676 # Test with the equivalent of __USE_TIME_BITS64
7777 RUST_LIBC_UNSTABLE_LINUX_TIME_BITS64=1 $cmd
7878 case " $target " in
79- # Test with the equivalent of __FILE_OFFSET_BITS=64
8079 arm* -gnu* |i* 86* -gnu|powerpc-* -gnu* |mips* -gnu|sparc-* -gnu|thumb-* gnu* )
81- RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd ;;
80+ # Test with the equivalent of _FILE_OFFSET_BITS=64
81+ RUST_LIBC_UNSTABLE_GNU_FILE_OFFSET_BITS=64 $cmd
82+ # Test with the equivalent of _TIME_BITS=64
83+ RUST_LIBC_UNSTABLE_GNU_TIME_BITS=64 $cmd
84+ ;;
8285 esac
8386 fi
8487
You can’t perform that action at this time.
0 commit comments