9274ae32c3
In commit6f8bbb374b
we enabled building with the gcrypt library on the the Debian 'x86 host', which was based on Debian Stretch. Later in commit698a71edbe
we upgraded the Debian base image to Buster. Apparently Debian Stretch was listing gcrypt as a QEMU dependency, but this is not the case anymore in Buster, so we need to install it manually (it it not listed by 'apt-get -s build-dep qemu' in the common debian10.docker anymore). This fixes: $ ../configure $QEMU_CONFIGURE_OPTS ERROR: User requested feature gcrypt configure was not able to find it. Install gcrypt devel >= 1.5.0 Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com> Signed-off-by: Alex Bennée <alex.bennee@linaro.org> Reviewed-by: Richard Henderson <richard.henderson@linaro.org> Message-Id: <20200322120104.21267-3-philmd@redhat.com> Message-Id: <20200323161514.23952-9-alex.bennee@linaro.org>
50 lines
1.5 KiB
Docker
50 lines
1.5 KiB
Docker
#
|
|
# Docker x86_64 target
|
|
#
|
|
# This docker target builds on the debian Stretch base image. Further
|
|
# libraries which are not widely available are installed by hand.
|
|
#
|
|
FROM qemu:debian10
|
|
MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
|
|
|
|
RUN apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt build-dep -yy qemu
|
|
|
|
RUN apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends \
|
|
libbz2-dev \
|
|
liblzo2-dev \
|
|
libgcrypt20-dev \
|
|
librdmacm-dev \
|
|
libsasl2-dev \
|
|
libsnappy-dev \
|
|
libvte-dev
|
|
|
|
# virgl
|
|
RUN apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends \
|
|
libegl1-mesa-dev \
|
|
libepoxy-dev \
|
|
libgbm-dev
|
|
RUN git clone https://gitlab.freedesktop.org/virgl/virglrenderer.git /usr/src/virglrenderer && \
|
|
cd /usr/src/virglrenderer && git checkout virglrenderer-0.8.0
|
|
RUN cd /usr/src/virglrenderer && ./autogen.sh && ./configure --disable-tests && make install
|
|
|
|
# netmap
|
|
RUN apt update && \
|
|
DEBIAN_FRONTEND=noninteractive eatmydata \
|
|
apt install -y --no-install-recommends \
|
|
linux-headers-amd64
|
|
RUN git clone https://github.com/luigirizzo/netmap.git /usr/src/netmap
|
|
RUN cd /usr/src/netmap && git checkout v11.3
|
|
RUN cd /usr/src/netmap/LINUX && ./configure --no-drivers --no-apps --kernel-dir=$(ls -d /usr/src/linux-headers-*-amd64) && make install
|
|
ENV QEMU_CONFIGURE_OPTS --enable-netmap
|
|
|
|
RUN ldconfig
|
|
|
|
# gcrypt
|
|
ENV QEMU_CONFIGURE_OPTS $QEMU_CONFIGURE_OPTS --enable-gcrypt
|