Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
docker
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ag-ohlberger
dune-community
docker
Commits
313142ef
Unverified
Commit
313142ef
authored
2 years ago
by
René Fritze
Browse files
Options
Downloads
Patches
Plain Diff
fix ccache pickup
parent
f97fba84
No related branches found
No related tags found
1 merge request
!129
Wheelbuilder ccache
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
manylinux/include/wheelbuilder_2_28_x86_64
+5
-2
5 additions, 2 deletions
manylinux/include/wheelbuilder_2_28_x86_64
with
5 additions
and
2 deletions
manylinux/include/wheelbuilder_2_28_x86_64
+
5
−
2
View file @
313142ef
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment