mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-23 00:54:26 +01:00
Merge pull request #237 from Gjacquenot/new_master
Added new image windows-x64-posix
This commit is contained in:
commit
d3cd828db0
@ -314,6 +314,25 @@ jobs:
|
|||||||
- save_cache:
|
- save_cache:
|
||||||
key: windows-x64-assets-{{ .Revision }}
|
key: windows-x64-assets-{{ .Revision }}
|
||||||
paths: ~/docker/windows-x64.tar
|
paths: ~/docker/windows-x64.tar
|
||||||
|
windows-x64-posix:
|
||||||
|
<<: *build-settings
|
||||||
|
steps:
|
||||||
|
- restore_cache:
|
||||||
|
key: base-assets-{{ .Revision }}
|
||||||
|
- run:
|
||||||
|
no_output_timeout: 1.5h
|
||||||
|
name: windows-x64-posix build
|
||||||
|
command: |
|
||||||
|
docker load -i ~/docker/base.tar
|
||||||
|
make windows-x64-posix
|
||||||
|
docker save -o ~/docker/windows-x64-posix.tar dockcross/windows-x64-posix:latest
|
||||||
|
- run:
|
||||||
|
name: windows-x64-posix test
|
||||||
|
command: |
|
||||||
|
make windows-x64-posix.test
|
||||||
|
- save_cache:
|
||||||
|
key: windows-x64-posix-assets-{{ .Revision }}
|
||||||
|
paths: ~/docker/windows-x64-posix.tar
|
||||||
windows-x86:
|
windows-x86:
|
||||||
<<: *build-settings
|
<<: *build-settings
|
||||||
steps:
|
steps:
|
||||||
@ -500,6 +519,16 @@ jobs:
|
|||||||
docker login -u $DOCKER_USER -p $DOCKER_PASS
|
docker login -u $DOCKER_USER -p $DOCKER_PASS
|
||||||
docker push dockcross/windows-x64:latest
|
docker push dockcross/windows-x64:latest
|
||||||
fi
|
fi
|
||||||
|
- restore_cache:
|
||||||
|
key: windows-x64-posix-assets-{{ .Revision }}
|
||||||
|
- deploy:
|
||||||
|
name: Deploy windows-x64-posix
|
||||||
|
command: |
|
||||||
|
docker load -i ~/docker/windows-x64-posix.tar
|
||||||
|
if [ "${CIRCLE_BRANCH}" == "master" ]; then
|
||||||
|
docker login -u $DOCKER_USER -p $DOCKER_PASS
|
||||||
|
docker push dockcross/windows-x64-posix:latest
|
||||||
|
fi
|
||||||
- restore_cache:
|
- restore_cache:
|
||||||
key: windows-x86-assets-{{ .Revision }}
|
key: windows-x86-assets-{{ .Revision }}
|
||||||
- deploy:
|
- deploy:
|
||||||
@ -565,6 +594,9 @@ workflows:
|
|||||||
- windows-x64:
|
- windows-x64:
|
||||||
requires:
|
requires:
|
||||||
- base
|
- base
|
||||||
|
- windows-x64-posix:
|
||||||
|
requires:
|
||||||
|
- base
|
||||||
- windows-x86:
|
- windows-x86:
|
||||||
requires:
|
requires:
|
||||||
- base
|
- base
|
||||||
@ -588,4 +620,5 @@ workflows:
|
|||||||
- manylinux-x64
|
- manylinux-x64
|
||||||
- manylinux-x86
|
- manylinux-x86
|
||||||
- windows-x64
|
- windows-x64
|
||||||
|
- windows-x64-posix
|
||||||
- windows-x86
|
- windows-x86
|
||||||
|
5
Makefile
5
Makefile
@ -13,10 +13,10 @@ ORG = dockcross
|
|||||||
BIN = ./bin
|
BIN = ./bin
|
||||||
|
|
||||||
# These images are built using the "build implicit rule"
|
# These images are built using the "build implicit rule"
|
||||||
STANDARD_IMAGES = linux-s390x android-arm android-arm64 linux-x86 linux-x64 linux-arm64 linux-armv5 linux-armv6 linux-armv7 linux-mips linux-mipsel linux-ppc64le windows-x86 windows-x64
|
STANDARD_IMAGES = linux-s390x android-arm android-arm64 linux-x86 linux-x64 linux-arm64 linux-armv5 linux-armv6 linux-armv7 linux-mips linux-mipsel linux-ppc64le windows-x86 windows-x64 windows-x64-posix
|
||||||
|
|
||||||
# Generated Dockerfiles.
|
# Generated Dockerfiles.
|
||||||
GEN_IMAGES = linux-s390x linux-mips manylinux-x86 manylinux-x64 browser-asmjs linux-arm64 windows-x86 windows-x64
|
GEN_IMAGES = linux-s390x linux-mips manylinux-x86 manylinux-x64 browser-asmjs linux-arm64 windows-x86 windows-x64 windows-x64-posix
|
||||||
GEN_IMAGE_DOCKERFILES = $(addsuffix /Dockerfile,$(GEN_IMAGES))
|
GEN_IMAGE_DOCKERFILES = $(addsuffix /Dockerfile,$(GEN_IMAGES))
|
||||||
|
|
||||||
# These images are expected to have explicit rules for *both* build and testing
|
# These images are expected to have explicit rules for *both* build and testing
|
||||||
@ -31,6 +31,7 @@ IMAGES = $(STANDARD_IMAGES) $(NON_STANDARD_IMAGES)
|
|||||||
linux-ppc64le.test_ARGS = --languages C
|
linux-ppc64le.test_ARGS = --languages C
|
||||||
windows-x86.test_ARGS = --exe-suffix ".exe"
|
windows-x86.test_ARGS = --exe-suffix ".exe"
|
||||||
windows-x64.test_ARGS = --exe-suffix ".exe"
|
windows-x64.test_ARGS = --exe-suffix ".exe"
|
||||||
|
windows-x64-posix.test_ARGS = --exe-suffix ".exe"
|
||||||
|
|
||||||
# On CircleCI, do not attempt to delete container
|
# On CircleCI, do not attempt to delete container
|
||||||
# See https://circleci.com/docs/docker-btrfs-error/
|
# See https://circleci.com/docs/docker-btrfs-error/
|
||||||
|
11
README.rst
11
README.rst
@ -201,14 +201,21 @@ dockcross/manylinux-x86
|
|||||||
:target: https://microbadger.com/images/dockcross/windows-x64
|
:target: https://microbadger.com/images/dockcross/windows-x64
|
||||||
|
|
||||||
dockcross/windows-x64
|
dockcross/windows-x64
|
||||||
|windows-x64-images| 64-bit Windows cross-compiler based on MXE/MinGW-w64.
|
|windows-x64-images| 64-bit Windows cross-compiler based on MXE/MinGW-w64 with win32 threads.
|
||||||
|
|
||||||
|
|
||||||
|
.. |windows-x64-posix-images| image:: https://images.microbadger.com/badges/image/dockcross/windows-x64-posix.svg
|
||||||
|
:target: https://microbadger.com/images/dockcross/windows-x64-posix
|
||||||
|
|
||||||
|
dockcross/windows-x64-posix
|
||||||
|
|windows-x64-posix-images| 64-bit Windows cross-compiler based on MXE/MinGW-w64 with posix threads.
|
||||||
|
|
||||||
|
|
||||||
.. |windows-x86-images| image:: https://images.microbadger.com/badges/image/dockcross/windows-x86.svg
|
.. |windows-x86-images| image:: https://images.microbadger.com/badges/image/dockcross/windows-x86.svg
|
||||||
:target: https://microbadger.com/images/dockcross/windows-x86
|
:target: https://microbadger.com/images/dockcross/windows-x86
|
||||||
|
|
||||||
dockcross/windows-x86
|
dockcross/windows-x86
|
||||||
|windows-x86-images| 32-bit Windows cross-compiler based on MXE/MinGW-w64.
|
|windows-x86-images| 32-bit Windows cross-compiler based on MXE/MinGW-w64 with win32 threads.
|
||||||
|
|
||||||
|
|
||||||
Articles
|
Articles
|
||||||
|
@ -4,17 +4,19 @@
|
|||||||
#
|
#
|
||||||
# WINEARCH environment variable to either "win64" or "win32"
|
# WINEARCH environment variable to either "win64" or "win32"
|
||||||
# MXE_TARGET_ARCH argument to either "x86_64" or "i686". See http://mxe.cc/
|
# MXE_TARGET_ARCH argument to either "x86_64" or "i686". See http://mxe.cc/
|
||||||
|
# MXE_TARGET_THREAD argument to either "" or ".posix". Default is win32. See http://mxe.cc/
|
||||||
#
|
#
|
||||||
# For example:
|
# For example:
|
||||||
#
|
#
|
||||||
# ENV WINEARCH win64
|
# ENV WINEARCH win64
|
||||||
# ARG MXE_TARGET_ARCH=x86_64
|
# ARG MXE_TARGET_ARCH=x86_64
|
||||||
|
# ARG MXE_TARGET_THREAD=
|
||||||
#
|
#
|
||||||
|
|
||||||
# mxe master 2017-10-25
|
# mxe master 2017-10-25
|
||||||
ARG MXE_GIT_TAG=994ad47302e8811614b7eb49fc05234942b95b89
|
ARG MXE_GIT_TAG=994ad47302e8811614b7eb49fc05234942b95b89
|
||||||
|
|
||||||
ENV CMAKE_TOOLCHAIN_FILE /usr/src/mxe/usr/${MXE_TARGET_ARCH}-w64-mingw32.static/share/cmake/mxe-conf.cmake
|
ENV CMAKE_TOOLCHAIN_FILE /usr/src/mxe/usr/${MXE_TARGET_ARCH}-w64-mingw32.static${MXE_TARGET_THREAD}/share/cmake/mxe-conf.cmake
|
||||||
|
|
||||||
ARG DEBIAN_FRONTEND=noninteractive
|
ARG DEBIAN_FRONTEND=noninteractive
|
||||||
|
|
||||||
@ -81,7 +83,7 @@ RUN \
|
|||||||
# Configure "settings.mk" required to build MXE
|
# Configure "settings.mk" required to build MXE
|
||||||
#
|
#
|
||||||
cd /usr/src/mxe && \
|
cd /usr/src/mxe && \
|
||||||
echo "MXE_TARGETS := ${MXE_TARGET_ARCH}-w64-mingw32.static" > settings.mk && \
|
echo "MXE_TARGETS := ${MXE_TARGET_ARCH}-w64-mingw32.static${MXE_TARGET_THREAD}" > settings.mk && \
|
||||||
echo "LOCAL_PKG_LIST := gcc" >> settings.mk && \
|
echo "LOCAL_PKG_LIST := gcc" >> settings.mk && \
|
||||||
echo ".DEFAULT local-pkg-list:" >> settings.mk && \
|
echo ".DEFAULT local-pkg-list:" >> settings.mk && \
|
||||||
echo "local-pkg-list: \$(LOCAL_PKG_LIST)" >> settings.mk && \
|
echo "local-pkg-list: \$(LOCAL_PKG_LIST)" >> settings.mk && \
|
||||||
@ -104,11 +106,11 @@ RUN \
|
|||||||
#
|
#
|
||||||
cd /usr/bin && \
|
cd /usr/bin && \
|
||||||
rm cmake cpack && \
|
rm cmake cpack && \
|
||||||
ln -s /usr/src/mxe/usr/bin/${MXE_TARGET_ARCH}-w64-mingw32.static-cmake cmake && \
|
ln -s /usr/src/mxe/usr/bin/${MXE_TARGET_ARCH}-w64-mingw32.static${MXE_TARGET_THREAD}-cmake cmake && \
|
||||||
ln -s /usr/src/mxe/usr/bin/${MXE_TARGET_ARCH}-w64-mingw32.static-cpack cpack
|
ln -s /usr/src/mxe/usr/bin/${MXE_TARGET_ARCH}-w64-mingw32.static${MXE_TARGET_THREAD}-cpack cpack
|
||||||
|
|
||||||
ENV PATH ${PATH}:/usr/src/mxe/usr/bin
|
ENV PATH ${PATH}:/usr/src/mxe/usr/bin
|
||||||
ENV CROSS_TRIPLE ${MXE_TARGET_ARCH}-w64-mingw32.static
|
ENV CROSS_TRIPLE ${MXE_TARGET_ARCH}-w64-mingw32.static${MXE_TARGET_THREAD}
|
||||||
ENV AS=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-as \
|
ENV AS=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-as \
|
||||||
AR=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-ar \
|
AR=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-ar \
|
||||||
CC=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-gcc \
|
CC=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-gcc \
|
||||||
|
21
windows-x64-posix/Dockerfile.in
Normal file
21
windows-x64-posix/Dockerfile.in
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
FROM dockcross/base:latest
|
||||||
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||||
|
|
||||||
|
ENV WINEARCH win64
|
||||||
|
ARG MXE_TARGET_ARCH=x86_64
|
||||||
|
ARG MXE_TARGET_THREAD=.posix
|
||||||
|
|
||||||
|
#include "common.windows"
|
||||||
|
|
||||||
|
ENV DEFAULT_DOCKCROSS_IMAGE dockcross/windows-x64-posix
|
||||||
|
|
||||||
|
# Build-time metadata as defined at http://label-schema.org
|
||||||
|
ARG BUILD_DATE
|
||||||
|
ARG IMAGE
|
||||||
|
ARG VCS_REF
|
||||||
|
ARG VCS_URL
|
||||||
|
LABEL org.label-schema.build-date=$BUILD_DATE \
|
||||||
|
org.label-schema.name=$IMAGE \
|
||||||
|
org.label-schema.vcs-ref=$VCS_REF \
|
||||||
|
org.label-schema.vcs-url=$VCS_URL \
|
||||||
|
org.label-schema.schema-version="1.0"
|
@ -3,6 +3,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
|
|
||||||
ENV WINEARCH win64
|
ENV WINEARCH win64
|
||||||
ARG MXE_TARGET_ARCH=x86_64
|
ARG MXE_TARGET_ARCH=x86_64
|
||||||
|
ARG MXE_TARGET_THREAD=
|
||||||
|
|
||||||
#include "common.windows"
|
#include "common.windows"
|
||||||
|
|
||||||
|
@ -3,6 +3,7 @@ MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|||||||
|
|
||||||
ENV WINEARCH win32
|
ENV WINEARCH win32
|
||||||
ARG MXE_TARGET_ARCH=i686
|
ARG MXE_TARGET_ARCH=i686
|
||||||
|
ARG MXE_TARGET_THREAD=
|
||||||
|
|
||||||
#include "common.windows"
|
#include "common.windows"
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user