Skip to content

Instantly share code, notes, and snippets.

@Ation
Created October 17, 2018 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Ation/dede01da9e8f705049dbfb34ee9e71de to your computer and use it in GitHub Desktop.
Save Ation/dede01da9e8f705049dbfb34ee9e71de to your computer and use it in GitHub Desktop.
install ccache ubuntu
# 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