mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
32 lines
862 B
Docker
32 lines
862 B
Docker
FROM dockcross/base:latest
|
|
MAINTAINER Matt McCormick "matt.mccormick@kitware.com"
|
|
|
|
RUN git clone --recurse-submodules https://repo.or.cz/tinycc.git \
|
|
&& cd tinycc \
|
|
&& ./configure --cpu=x86_64 \
|
|
&& make -j$(nproc) \
|
|
&& make test \
|
|
&& make install
|
|
|
|
ENV PATH="/usr/local/bin:${PATH}"
|
|
# Test if compiler work
|
|
RUN tcc -v
|
|
|
|
ENV CROSS_TRIPLE x86_64-linux-gnu
|
|
ENV CROSS_ROOT /usr/bin
|
|
ENV AS=/usr/bin/${CROSS_TRIPLE}-as \
|
|
AR=/usr/bin/${CROSS_TRIPLE}-ar \
|
|
CC=/usr/local/bin/tcc \
|
|
CPP=/usr/bin/${CROSS_TRIPLE}-cpp \
|
|
CXX=/usr/bin/${CROSS_TRIPLE}-g++ \
|
|
LD=/usr/bin/${CROSS_TRIPLE}-ld \
|
|
FC=/usr/bin/${CROSS_TRIPLE}-gfortran
|
|
|
|
|
|
COPY ${CROSS_TRIPLE}-noop.sh /usr/bin/${CROSS_TRIPLE}-noop
|
|
|
|
COPY Toolchain.cmake /usr/lib/${CROSS_TRIPLE}/
|
|
ENV CMAKE_TOOLCHAIN_FILE /usr/lib/${CROSS_TRIPLE}/Toolchain.cmake
|
|
|
|
#include "common.label-and-env"
|