File tree 3 files changed +4
-8
lines changed
powerpc64-unknown-linux-gnu
powerpc64le-unknown-linux-gnu
3 files changed +4
-8
lines changed Original file line number Diff line number Diff line change @@ -3,9 +3,9 @@ FROM ubuntu:24.04
3
3
RUN apt-get update && apt-get install -y --no-install-recommends \
4
4
gcc libc6-dev qemu-user ca-certificates \
5
5
gcc-powerpc64-linux-gnu libc6-dev-ppc64-cross \
6
- qemu-system-ppc file make
6
+ file make
7
7
8
8
ENV CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_LINKER=powerpc64-linux-gnu-gcc \
9
- CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -cpu power9 -L /usr/powerpc64-linux-gnu" \
9
+ CARGO_TARGET_POWERPC64_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64 -cpu power10 -L /usr/powerpc64-linux-gnu" \
10
10
CC=powerpc64-linux-gnu-gcc \
11
11
OBJDUMP=powerpc64-linux-gnu-objdump
Original file line number Diff line number Diff line change @@ -3,10 +3,10 @@ FROM ubuntu:24.04
3
3
RUN apt-get update && apt-get install -y --no-install-recommends \
4
4
gcc libc6-dev qemu-user ca-certificates \
5
5
gcc-powerpc64le-linux-gnu libc6-dev-ppc64el-cross \
6
- qemu-system-ppc file make
6
+ file make
7
7
8
8
# Work around qemu triggering a sigill on vec_subs if the cpu target is not defined.
9
9
ENV CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_LINKER=powerpc64le-linux-gnu-gcc \
10
- CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64le -cpu power9 -L /usr/powerpc64le-linux-gnu" \
10
+ CARGO_TARGET_POWERPC64LE_UNKNOWN_LINUX_GNU_RUNNER="qemu-ppc64le -cpu power10 -L /usr/powerpc64le-linux-gnu" \
11
11
CC=powerpc64le-linux-gnu-gcc \
12
12
OBJDUMP=powerpc64le-linux-gnu-objdump
Original file line number Diff line number Diff line change @@ -82,10 +82,6 @@ cargo_test() {
82
82
wasm32* )
83
83
cmd=" $cmd --nocapture"
84
84
;;
85
- # qemu has an erratic behavior on those tests
86
- powerpc64* )
87
- cmd=" $cmd --skip test_vec_lde_u16 --skip test_vec_lde_u32 --skip test_vec_expte"
88
- ;;
89
85
esac
90
86
91
87
if [ " $SKIP_TESTS " != " " ]; then
You can’t perform that action at this time.
0 commit comments