2015-05-04 23:32:58 +02:00
|
|
|
FROM thewtex/cross-compiler-base
|
|
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
2014-10-12 13:21:43 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
# WINE is used as an emulator for try_run and tests with CMake.
|
|
|
|
# Other dependencies are from the listed MXE requirements:
|
|
|
|
# http://mxe.cc/#requirements
|
|
|
|
# 'cmake' is omitted because it is installed from source in the base image
|
|
|
|
RUN apt-get update && apt-get -y install \
|
|
|
|
autoconf \
|
|
|
|
automake \
|
|
|
|
autopoint \
|
|
|
|
bash \
|
|
|
|
bison \
|
|
|
|
bzip2 \
|
|
|
|
flex \
|
|
|
|
gettext \
|
|
|
|
git \
|
|
|
|
g++ \
|
|
|
|
g++-multilib \
|
|
|
|
gperf \
|
|
|
|
intltool \
|
|
|
|
libffi-dev \
|
2016-04-17 03:34:30 +02:00
|
|
|
libgdk-pixbuf2.0-dev \
|
2015-05-04 23:32:58 +02:00
|
|
|
libtool-bin \
|
|
|
|
libltdl-dev \
|
|
|
|
libssl-dev \
|
|
|
|
libxml-parser-perl \
|
|
|
|
libc6-dev-i386 \
|
|
|
|
make \
|
|
|
|
openssl \
|
2016-04-17 03:34:30 +02:00
|
|
|
p7zip-full \
|
2015-05-04 23:32:58 +02:00
|
|
|
patch \
|
|
|
|
perl \
|
|
|
|
pkg-config \
|
|
|
|
python \
|
|
|
|
ruby \
|
|
|
|
scons \
|
|
|
|
sed \
|
|
|
|
unzip \
|
|
|
|
wget \
|
|
|
|
wine \
|
|
|
|
xz-utils
|
2015-05-05 07:04:50 +02:00
|
|
|
# Set up wine
|
|
|
|
RUN dpkg --add-architecture i386 && \
|
|
|
|
apt-get update && \
|
2015-05-06 06:08:21 +02:00
|
|
|
apt-get install -y wine32
|
|
|
|
ENV WINEARCH win32
|
|
|
|
RUN wine hostname
|
2014-10-12 13:21:43 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
WORKDIR /usr/src
|
2016-04-17 03:34:30 +02:00
|
|
|
# mxe master 2016-04-09
|
2015-05-04 23:32:58 +02:00
|
|
|
RUN git clone https://github.com/mxe/mxe.git && \
|
|
|
|
cd mxe && \
|
2016-04-17 03:34:30 +02:00
|
|
|
git checkout 4accc990de7741f4d5aa37e368a732f3d47d803a
|
2015-05-04 23:32:58 +02:00
|
|
|
WORKDIR /usr/src/mxe
|
|
|
|
COPY settings.mk /usr/src/mxe/
|
|
|
|
RUN make -j$(nproc)
|
2014-10-12 13:21:43 +02:00
|
|
|
|
2015-05-04 23:32:58 +02:00
|
|
|
ENV PATH ${PATH}:/usr/src/mxe/usr/bin
|
|
|
|
ENV CMAKE_TOOLCHAIN_FILE /usr/src/mxe/usr/i686-w64-mingw32.static/share/cmake/mxe-conf.cmake
|
|
|
|
RUN echo 'set(CMAKE_CROSSCOMPILING_EMULATOR "/usr/bin/wine")' >> ${CMAKE_TOOLCHAIN_FILE}
|
2016-04-17 03:36:04 +02:00
|
|
|
ENV CROSS_TRIPLE i686-w64-mingw32.static
|
|
|
|
ENV AS=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-as \
|
|
|
|
AR=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-ar \
|
|
|
|
CC=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-gcc \
|
|
|
|
CPP=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-cpp \
|
|
|
|
CXX=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-g++ \
|
|
|
|
LD=/usr/src/mxe/usr/bin/${CROSS_TRIPLE}-ld
|
2015-05-04 23:32:58 +02:00
|
|
|
|
|
|
|
WORKDIR /usr/src
|