[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH v2 5/7] dockerfiles/debian-win64-cross: Download WHPX MinGW heade
From: |
Thomas Huth |
Subject: |
[PATCH v2 5/7] dockerfiles/debian-win64-cross: Download WHPX MinGW headers |
Date: |
Sun, 23 Aug 2020 13:17:55 +0200 |
To compile-test the WHPX accelerator, we need to download these system
headers first (they are unfortunately not part of any released and
packaged MinGW toolchain yet).
Idea taken from another patch by Stefan Weil.
Message-Id: <20200804170055.2851-12-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/docker/dockerfiles/debian-win64-cross.docker | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/tests/docker/dockerfiles/debian-win64-cross.docker
b/tests/docker/dockerfiles/debian-win64-cross.docker
index 2fc9cfcbc6..4cc4a3f365 100644
--- a/tests/docker/dockerfiles/debian-win64-cross.docker
+++ b/tests/docker/dockerfiles/debian-win64-cross.docker
@@ -32,7 +32,14 @@ RUN apt-get update && \
mxe-$TARGET-w64-mingw32.shared-sdl2 \
mxe-$TARGET-w64-mingw32.shared-sdl2-mixer \
mxe-$TARGET-w64-mingw32.shared-sdl2-gfx \
- mxe-$TARGET-w64-mingw32.shared-zlib
+ mxe-$TARGET-w64-mingw32.shared-zlib \
+ curl && \
+ curl -s -S -o
/usr/lib/mxe/usr/x86_64-w64-mingw32.shared/include/WinHvEmulation.h \
+
"https://sourceforge.net/p/mingw-w64/mingw-w64/ci/master/tree/mingw-w64-headers/include/winhvemulation.h?format=raw"
&& \
+ curl -s -S -o
/usr/lib/mxe/usr/x86_64-w64-mingw32.shared/include/WinHvPlatform.h \
+
"https://sourceforge.net/p/mingw-w64/mingw-w64/ci/master/tree/mingw-w64-headers/include/winhvplatform.h?format=raw"
&& \
+ curl -s -S -o
/usr/lib/mxe/usr/x86_64-w64-mingw32.shared/include/winhvplatformdefs.h \
+
"https://sourceforge.net/p/mingw-w64/mingw-w64/ci/master/tree/mingw-w64-headers/include/winhvplatformdefs.h?format=raw"
# Specify the cross prefix for this image (see tests/docker/common.rc)
ENV QEMU_CONFIGURE_OPTS --cross-prefix=x86_64-w64-mingw32.shared-
--
2.18.2
- [PATCH v2 0/7] Run cross-compilation build tests in the gitlab-CI, Thomas Huth, 2020/08/23
- [PATCH v2 2/7] tests/docker: Install python3-setuptools in the debian9-mxe containers, Thomas Huth, 2020/08/23
- [PATCH v2 3/7] tests/Makefile: test-image-locking needs CONFIG_POSIX, Thomas Huth, 2020/08/23
- [PATCH v2 4/7] tests/Makefile: test-replication needs CONFIG_POSIX, Thomas Huth, 2020/08/23
- [PATCH v2 6/7] configure: Allow automatic WHPX detection, Thomas Huth, 2020/08/23
- [PATCH v2 5/7] dockerfiles/debian-win64-cross: Download WHPX MinGW headers,
Thomas Huth <=
- [PATCH v2 7/7] gitlab-ci: Add cross-compiling build tests, Thomas Huth, 2020/08/23
- [PATCH v2 1/7] configure: Add system = 'linux' for meson when cross-compiling, Thomas Huth, 2020/08/23
- Re: [PATCH v2 0/7] Run cross-compilation build tests in the gitlab-CI, Paolo Bonzini, 2020/08/25