mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-12-22 08:24:25 +01:00
linux-x86: Update and add testing.
This commit is contained in:
parent
5031a312a6
commit
af5c3fecec
2
Makefile
2
Makefile
@ -11,7 +11,7 @@ browser-asmjs: base browser-asmjs/Dockerfile
|
||||
$(DOCKER) build -t $(IMAGE)-browser-asmjs browser-asmjs
|
||||
|
||||
linux-x86:
|
||||
$(DOCKER) build -t $(IMAGE)-darwin-x86 darwin-x86
|
||||
$(DOCKER) build -t $(IMAGE)-linux-x86 linux-x86
|
||||
|
||||
linux-x64:
|
||||
$(DOCKER) build -t $(IMAGE)-linux-x64 linux-x64
|
||||
|
@ -12,6 +12,7 @@ dependencies:
|
||||
- docker pull thewtex/cross-compiler-linux-armv7
|
||||
- docker pull thewtex/cross-compiler-linux-ppc64le
|
||||
- docker pull thewtex/cross-compiler-linux-x64
|
||||
- docker pull thewtex/cross-compiler-linux-x86
|
||||
|
||||
test:
|
||||
override:
|
||||
@ -29,6 +30,8 @@ test:
|
||||
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-ppc64le python /usr/src/test/run.py --emulator /usr/bin/qemu-ppc64le --languages C
|
||||
- make linux-x64
|
||||
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-x64 python /usr/src/test/run.py
|
||||
- make linux-x86
|
||||
- docker run --rm -v ~/cross-compilers/test/:/usr/src/test:ro thewtex/cross-compiler-linux-x86 python /usr/src/test/run.py
|
||||
|
||||
deployment:
|
||||
hub:
|
||||
@ -42,3 +45,4 @@ deployment:
|
||||
- docker push thewtex/cross-compiler-linux-armv7
|
||||
- docker push thewtex/cross-compiler-linux-ppc64le
|
||||
- docker push thewtex/cross-compiler-linux-x64
|
||||
- docker push thewtex/cross-compiler-linux-x86
|
||||
|
@ -1,28 +1,21 @@
|
||||
FROM steeve/cross-compiler:base
|
||||
MAINTAINER Steeve Morin "steeve.morin@gmail.com"
|
||||
FROM thewtex/cross-compiler-base
|
||||
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
||||
|
||||
RUN apt-get update && apt-get -y install \
|
||||
gcc-multilib \
|
||||
g++-multilib
|
||||
RUN dpkg --add-architecture i386 && \
|
||||
apt-get update && apt-get -y install \
|
||||
gcc-multilib \
|
||||
g++-multilib
|
||||
|
||||
ENV CROSS_TRIPLE i686-linux-gnu
|
||||
ENV CROSS_ROOT /usr/i686-linux-gnu
|
||||
ENV CROSS_ROOT /usr/${CROSS_TRIPLE}
|
||||
ENV PATH ${PATH}:${CROSS_ROOT}/bin
|
||||
ENV LD_LIBRARY_PATH ${CROSS_ROOT}/lib:${LD_LIBRARY_PATH}
|
||||
|
||||
COPY ${CROSS_TRIPLE}.sh /usr/bin/${CROSS_TRIPLE}.sh
|
||||
RUN mkdir -p ${CROSS_ROOT} && \
|
||||
cd /usr/bin && \
|
||||
chmod +x ${CROSS_TRIPLE}.sh && \
|
||||
ln -s x86_64-linux-gnu-gcc x86_64-linux-gnu-cc && \
|
||||
ln -s x86_64-linux-gnu-g++ x86_64-linux-gnu-c++ && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-gcc && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-cc && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-g++ && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-c++ && \
|
||||
for i in strip objdump; do \
|
||||
ln -s ${i} ${CROSS_TRIPLE}-${i} ; \
|
||||
done && \
|
||||
for i in ranlib nm ar; do \
|
||||
ln -s x86_64-linux-gnu-gcc-${i}-4.7 ${CROSS_TRIPLE}-${i} ; \
|
||||
done
|
||||
RUN mkdir -p ${CROSS_ROOT}/bin
|
||||
COPY ${CROSS_TRIPLE}.sh ${CROSS_ROOT}/bin/${CROSS_TRIPLE}.sh
|
||||
RUN cd ${CROSS_ROOT}/bin && \
|
||||
chmod +x ${CROSS_TRIPLE}.sh && \
|
||||
ln -s /usr/bin/x86_64-linux-gnu-gcc && \
|
||||
ln -s /usr/bin/x86_64-linux-gnu-g++ && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-gcc && \
|
||||
ln -s ${CROSS_TRIPLE}.sh ${CROSS_TRIPLE}-g++
|
||||
ENV CC=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-gcc \
|
||||
CXX=${CROSS_ROOT}/bin/${CROSS_TRIPLE}-g++
|
||||
|
Loading…
Reference in New Issue
Block a user