Browse Source
A newer compiler is needed to build tests for Power10 instructions. As done for arm64 onpull/121/headc729a99d27, a new '-test-cross' image is created for ppc64 and ppc64le. As done on936fda4d77, a test for compiler support is added to verify that the toolchain in use has '-mpower10'. Finally, Unused images (docker-power-cross and docker-ppc64-cross) are removed. Signed-off-by: Matheus Ferst <matheus.ferst@eldorado.org.br> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Message-Id: <20210423205757.1752480-2-matheus.ferst@eldorado.org.br> Message-Id: <20210512102051.12134-27-alex.bennee@linaro.org>
committed by
Alex Bennée
6 changed files with 32 additions and 46 deletions
@ -1,12 +0,0 @@ |
|||
# |
|||
# Docker powerpc cross-compiler target |
|||
# |
|||
# This docker target builds on the debian Buster base image. |
|||
# |
|||
FROM qemu/debian10 |
|||
|
|||
RUN apt update && \ |
|||
DEBIAN_FRONTEND=noninteractive eatmydata \ |
|||
apt install -y --no-install-recommends \ |
|||
gcc-powerpc-linux-gnu \ |
|||
libc6-dev-powerpc-cross |
|||
@ -0,0 +1,17 @@ |
|||
# |
|||
# Docker powerpc/ppc64/ppc64le cross-compiler target |
|||
# |
|||
# This docker target builds on the debian Bullseye base image. |
|||
# |
|||
FROM qemu/debian11 |
|||
|
|||
RUN apt update && \ |
|||
DEBIAN_FRONTEND=noninteractive eatmydata \ |
|||
apt install -y --no-install-recommends \ |
|||
gcc-powerpc-linux-gnu \ |
|||
libc6-dev-powerpc-cross \ |
|||
gcc-10-powerpc64-linux-gnu \ |
|||
libc6-dev-ppc64-cross \ |
|||
gcc-10-powerpc64le-linux-gnu \ |
|||
libc6-dev-ppc64el-cross |
|||
|
|||
@ -1,11 +0,0 @@ |
|||
# |
|||
# Docker ppc64 cross-compiler target |
|||
# |
|||
# This docker target builds on the debian Buster base image. |
|||
FROM qemu/debian10 |
|||
|
|||
RUN apt update && \ |
|||
DEBIAN_FRONTEND=noninteractive eatmydata \ |
|||
apt install -y --no-install-recommends \ |
|||
gcc-powerpc64-linux-gnu \ |
|||
libc6-dev-ppc64-cross |
|||
Loading…
Reference in new issue