mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
703053871c
Signed-off-by: Steeve Morin <steeve.morin@gmail.com>
13 lines
367 B
Docker
13 lines
367 B
Docker
FROM steeve/cross-compiler:base
|
|
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
|
|
|
|
RUN apt-get update && apt-get -y install mingw-w64
|
|
|
|
ENV CROSS_TRIPLE i686-w64-mingw32
|
|
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
|
|
ENV PATH ${PATH}:${CROSS_ROOT}/bin
|
|
ENV LD_LIBRARY_PATH ${CROSS_ROOT}/lib:${LD_LIBRARY_PATH}
|
|
|
|
RUN cd /usr/bin && \
|
|
ln -s ${CROSS_TRIPLE}-gcc ${CROSS_TRIPLE}-cc
|