Skip to content

Commit 9e99aa2

Browse files
committed
Remove no_std features
Everything default unconditionally to #![no_std].
1 parent 7b81af0 commit 9e99aa2

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

ci/run.sh

+2-4
Original file line numberDiff line numberDiff line change
@@ -30,17 +30,15 @@ case $1 in
3030

3131
RUSTFLAGS="-C debug-assertions=no -C lto" \
3232
CARGO_INCREMENTAL=0 \
33-
$run --test $t --no-default-features \
34-
--features 'no_std mem c' --no-run
33+
$run --test $t --no-default-features --features 'mem c' --no-run
3534
qemu-arm-static target/${1}/debug/$t-*
3635
done
3736

3837
for t in $(ls testcrate/tests); do
3938
t=${t%.rs}
4039
RUSTFLAGS="-C lto" \
4140
CARGO_INCREMENTAL=0 \
42-
$run --test $t --no-default-features \
43-
--features 'no_std mem c' --no-run --release
41+
$run --test $t --no-default-features --features 'mem c' --no-run --release
4442
qemu-arm-static target/${1}/release/$t-*
4543
done
4644
;;

testcrate/Cargo.toml

-1
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,3 @@ c = ["compiler_builtins/c"]
2626
mem = ["compiler_builtins/mem"]
2727
mangled-names = ["compiler_builtins/mangled-names"]
2828
default = ["mangled-names"]
29-
no_std = []

0 commit comments

Comments
 (0)