We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f2c3431 commit c5e11d1Copy full SHA for c5e11d1
.github/workflows/build.yml
@@ -64,6 +64,17 @@ jobs:
64
run: |
65
echo "CCACHE_DIR=$(pwd)/ccache" >> $GITHUB_ENV
66
echo "PATH=/usr/lib/ccache:/usr/local/bin:/opt/sdk-dat-arm/host/usr/bin/:$PATH" >> $GITHUB_ENV
67
+ mkdir -p ~/ccache-links
68
+ cd ~/ccache-links
69
+ ln -s $(which ccache) clang
70
+ ln -s $(which ccache) clang++
71
+ ln -s $(which ccache) llvm-ar
72
+ ln -s $(which ccache) llvm-nm
73
+ ln -s $(which ccache) llvm-objcopy
74
+ ln -s $(which ccache) llvm-objdump
75
+ ln -s $(which ccache) llvm-readelf
76
+ ln -s $(which ccache) llvm-strip
77
+ echo "PATH=~/ccache-links:$PATH" >> $GITHUB_ENV
78
79
# Configure ccache
80
- name: Configure ccache
0 commit comments