mirror of
https://github.com/bensuperpc/dockcross.git
synced 2024-11-10 05:07:26 +01:00
b3feda218b
Improves cross-compilation support in add_custom_command by integrating https://gitlab.kitware.com/cmake/cmake/merge_requests/217 CMake Git master from 2016-11-03 (3.8-master). Addresses #54
38 lines
1.2 KiB
Docker
38 lines
1.2 KiB
Docker
WORKDIR /usr/share
|
|
RUN git clone "https://github.com/nojhan/liquidprompt.git" && \
|
|
cd liquidprompt && \
|
|
git checkout v_1.11
|
|
COPY imagefiles/.bashrc /root/
|
|
|
|
WORKDIR /usr/src
|
|
RUN git clone git://cmake.org/cmake.git CMake && \
|
|
cd CMake && \
|
|
git checkout ab2ae4823c3b60347825da4b851cd4e676f8bed1 && \
|
|
mkdir /usr/src/CMake-build && \
|
|
cd /usr/src/CMake-build && \
|
|
/usr/src/CMake/bootstrap \
|
|
--parallel=$(grep -c processor /proc/cpuinfo) \
|
|
--prefix=/usr && \
|
|
make -j$(grep -c processor /proc/cpuinfo) && \
|
|
./bin/cmake \
|
|
-DCMAKE_BUILD_TYPE:STRING=Release \
|
|
-DCMAKE_USE_OPENSSL:BOOL=ON . && \
|
|
make install && \
|
|
cd .. && rm -rf CMake*
|
|
|
|
RUN git clone "https://github.com/martine/ninja.git" && \
|
|
cd ninja && \
|
|
git checkout v1.7.1 && \
|
|
([ -e /opt/python/cp35-cp35m/bin/python ] && /opt/python/cp35-cp35m/bin/python ./configure.py --bootstrap) || python ./configure.py --bootstrap && \
|
|
./ninja && \
|
|
cp ./ninja /usr/bin/ && \
|
|
cd .. && rm -rf ninja
|
|
COPY imagefiles/cmake.sh /usr/local/bin/cmake
|
|
COPY imagefiles/ccmake.sh /usr/local/bin/ccmake
|
|
|
|
RUN echo "root:root" | chpasswd
|
|
WORKDIR /work
|
|
ENTRYPOINT ["/dockcross/entrypoint.sh"]
|
|
|
|
COPY imagefiles/entrypoint.sh imagefiles/dockcross /dockcross/
|