qemu/tests/docker/dockerfiles/fedora-win64-cross.docker
Thomas Huth 5a487950f9 tests/docker/dockerfiles: Add ccache to containers where it was missing
Make sure that ccache is available in all containers.

Message-Id: <20210414081907.871437-2-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
2021-05-14 12:24:20 +02:00

39 lines
762 B
Docker

FROM fedora:33
# Please keep this list sorted alphabetically
ENV PACKAGES \
bc \
bzip2 \
ccache \
diffutils \
findutils \
gcc \
gettext \
git \
hostname \
make \
meson \
mingw64-bzip2 \
mingw64-curl \
mingw64-glib2 \
mingw64-gmp \
mingw64-gtk3 \
mingw64-libjpeg-turbo \
mingw64-libpng \
mingw64-libtasn1 \
mingw64-pixman \
mingw64-pkg-config \
perl \
perl-Test-Harness \
python3 \
python3-PyYAML \
tar \
which
RUN dnf install -y $PACKAGES
RUN rpm -q $PACKAGES | sort > /packages.txt
ENV FEATURES mingw
# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=x86_64-w64-mingw32- --disable-capstone