intc/arm_gic: Fix gic_irq_signaling_enabled() for vCPUs
[qemu/ar7.git] / tests / docker / dockerfiles / debian-armhf-cross.docker
blob25d76188337f77d214ffdfa3dc3d887cbbe2ecb3
2 # Docker armhf 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 armhf
10 RUN apt update && \
11     DEBIAN_FRONTEND=noninteractive eatmydata \
12     apt install -y --no-install-recommends \
13         crossbuild-essential-armhf
14 RUN apt update && \
15     DEBIAN_FRONTEND=noninteractive eatmydata \
16     apt build-dep -yy -a armhf --arch-only qemu
18 # Specify the cross prefix for this image (see tests/docker/common.rc)
19 ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabihf-
20 ENV DEF_TARGET_LIST arm-softmmu,arm-linux-user,armeb-linux-user
22 RUN apt update && \
23     DEBIAN_FRONTEND=noninteractive eatmydata \
24     apt install -y --no-install-recommends \
25         libbz2-dev:armhf \
26         liblzo2-dev:armhf \
27         librdmacm-dev:armhf \
28         libsnappy-dev:armhf \
29         libxen-dev:armhf