2
0
mirror of https://codeberg.org/kiss-community/repo synced 2024-09-30 21:40:58 -06:00
repo/extra/ccache/post-install

17 lines
344 B
Plaintext
Raw Normal View History

2019-09-13 07:28:02 -06:00
#!/bin/sh
cat <<EOF
2020-05-03 14:44:01 -06:00
NOTE: To enable 'ccache' add this to your
2019-09-13 07:28:02 -06:00
'.shellrc' or '.profile'.
-> export PATH=/usr/lib/ccache/bin:\$PATH
NOTE: Clang is not supported out-of-the-box.
The following symlinks need to be created.
-> ln -s /usr/bin/ccache /usr/lib/ccache/bin/clang
-> ln -s /usr/bin/ccache /usr/lib/ccache/bin/clang++
2019-09-13 07:28:02 -06:00
EOF