17 lines
344 B
Plaintext
17 lines
344 B
Plaintext
|
#!/bin/sh
|
||
|
|
||
|
cat <<EOF
|
||
|
|
||
|
NOTE: To enable 'ccache' add this to your
|
||
|
'.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++
|
||
|
|
||
|
EOF
|