Created
August 23, 2018 13:19
-
-
Save adujardin/9aaf5bc509cf5b2cde09c31f9f35c39b to your computer and use it in GitHub Desktop.
ccache setup ubuntu
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#https://askubuntu.com/a/470636/609717 | |
# Install package | |
sudo apt install -y ccache | |
# Update symlinks | |
sudo /usr/sbin/update-ccache-symlinks | |
# Prepend ccache into the PATH | |
echo 'export PATH="/usr/lib/ccache:$PATH"' | tee -a ~/.bashrc | |
# Source bashrc to test the new PATH | |
source ~/.bashrc && echo $PATH |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment