libqtest: Inline g_assert_no_errno()
[qemu/armbru.git] / tests / docker / dockerfiles / debian-armel-cross.docker
blobe3bd68f51e9e5f699783b8c92d134e43d450259a
2 # Docker armel cross-compiler target
4 # This docker target builds on the debian Stretch base image.
6 FROM qemu:debian9
7 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
9 # Add the foreign architecture we want and install dependencies
10 RUN dpkg --add-architecture armel && \
11     apt update
12 RUN apt install -yy crossbuild-essential-armel
13 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
14     apt-get build-dep -yy -a armel qemu
16 # Specify the cross prefix for this image (see tests/docker/common.rc)
17 ENV QEMU_CONFIGURE_OPTS --cross-prefix=arm-linux-gnueabi-
19 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
20     apt-get install -y --no-install-recommends \
21         libbz2-dev:armel \
22         liblzo2-dev:armel \
23         librdmacm-dev:armel \
24         libsnappy-dev:armel