virtio-balloon: fix free page hinting without an iothread
[qemu/ar7.git] / tests / docker / dockerfiles / debian-ppc64el-cross.docker
blobcd386f01d93c7d24ff64eefcec23231c779a35d0
2 # Docker ppc64el cross-compiler target
4 # This docker target builds on the debian Stretch base image.
6 FROM qemu:debian10
8 # Add the foreign architecture we want and install dependencies
9 RUN dpkg --add-architecture ppc64el && \
10     apt update && \
11     apt install -yy crossbuild-essential-ppc64el
13 RUN apt update && \
14     DEBIAN_FRONTEND=noninteractive eatmydata \
15     apt build-dep -yy -a ppc64el --arch-only qemu
17 # Specify the cross prefix for this image (see tests/docker/common.rc)
18 ENV QEMU_CONFIGURE_OPTS --cross-prefix=powerpc64le-linux-gnu-
19 ENV DEF_TARGET_LIST ppc64-softmmu,ppc64-linux-user,ppc64abi32-linux-user
21 # Install extra libraries to increase code coverage
22 RUN apt update && \
23     DEBIAN_FRONTEND=noninteractive eatmydata \
24     apt install -y --no-install-recommends \
25         libbz2-dev:ppc64el \
26         liblzo2-dev:ppc64el \
27         librdmacm-dev:ppc64el \
28         libsnappy-dev:ppc64el