tests/dockerfiles: update the win cross builds to stretch
[qemu/ar7.git] / tests / docker / dockerfiles / debian-win32-cross.docker
blobc787e432454be90987616908e81b2fd907985997
2 # Docker mingw32 cross-compiler target
4 # This docker target builds on the debian Stretch MXE base image.
6 FROM qemu:debian9-mxe
8 MAINTAINER Philippe Mathieu-Daudé <f4bug@amsat.org>
10 ENV TARGET i686
12 RUN DEBIAN_FRONTEND=noninteractive eatmydata \
13     apt-get install -y --no-install-recommends \
14         mxe-$TARGET-w64-mingw32.shared-bzip2 \
15         mxe-$TARGET-w64-mingw32.shared-curl \
16         mxe-$TARGET-w64-mingw32.shared-glib \
17         mxe-$TARGET-w64-mingw32.shared-libgcrypt \
18         mxe-$TARGET-w64-mingw32.shared-libusb1 \
19         mxe-$TARGET-w64-mingw32.shared-lzo \
20         mxe-$TARGET-w64-mingw32.shared-nettle \
21         mxe-$TARGET-w64-mingw32.shared-ncurses \
22         mxe-$TARGET-w64-mingw32.shared-pixman \
23         mxe-$TARGET-w64-mingw32.shared-pkgconf \
24         mxe-$TARGET-w64-mingw32.shared-pthreads \
25         mxe-$TARGET-w64-mingw32.shared-sdl2 \
26         mxe-$TARGET-w64-mingw32.shared-sdl2-mixer \
27         mxe-$TARGET-w64-mingw32.shared-sdl2-gfx \
28         mxe-$TARGET-w64-mingw32.shared-zlib
30 # Specify the cross prefix for this image (see tests/docker/common.rc)
31 ENV QEMU_CONFIGURE_OPTS --cross-prefix=$TARGET-w64-mingw32.shared-