repo/extra/ccache/post-install

17 lines
344 B
Plaintext
Raw Normal View History

2019-09-13 13:28:02 +00:00
#!/bin/sh
cat <<EOF
2020-05-03 20:44:01 +00:00
NOTE: To enable 'ccache' add this to your
2019-09-13 13:28:02 +00: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 13:28:02 +00:00
EOF