Skip to content
Snippets Groups Projects
Unverified Commit 313142ef authored by René Fritze's avatar René Fritze
Browse files

fix ccache pickup

parent f97fba84
No related branches found
No related tags found
1 merge request!129Wheelbuilder ccache
......@@ -39,9 +39,12 @@ RUN echo "alias ls='ls -h --color=auto';\
wget -c https://github.com/ccache/ccache/releases/download/v4.7/ccache-4.7-linux-x86_64.tar.xz -O - | tar Jx && \
mv ccache-*/ccache /usr/local/bin && \
rm -rf ccache-* && \
mkdir -p ${CCACHE_BIN_DIR} \
mkdir -p ${CCACHE_BIN_DIR} && \
cd ${CCACHE_BIN_DIR} && \
(for ii in cc c++ cpp g++ gcc ; do ln -s $(which ccache) $ii; done )
(for ii in cc c++ cpp g++ gcc mpicc mpic++ mpicxx ; do ln -s $(which ccache) $ii; done )
# the masquerading link needs to be found eralier than the actual compiler
ENV PATH=${CCACHE_BIN_DIR}:${PATH}
COPY entrypoint.sh /usr/local/bin/
COPY gosu-amd64 /usr/local/bin/gosu
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment