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
|
|
|
|
|
2020-06-08 12:27:00 -06:00
|
|
|
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
|