Created
October 17, 2018 09:24
-
-
Save Ation/dede01da9e8f705049dbfb34ee9e71de to your computer and use it in GitHub Desktop.
install ccache 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
# 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