Skip to content

Instantly share code, notes, and snippets.

@lnrsoft
Created September 16, 2018 19:44
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 lnrsoft/c58d314dc0e7cf0223fc073a0984ea43 to your computer and use it in GitHub Desktop.
Save lnrsoft/c58d314dc0e7cf0223fc073a0984ea43 to your computer and use it in GitHub Desktop.
update-alternatives of clang on ubuntu
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-3.9 100
sudo update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-6.0 1000
sudo update-alternatives --install /usr/bin/clang++ clang /usr/bin/clang-3.9 100
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-3.9 100
sudo update-alternatives --install /usr/bin/clang clang /usr/bin/clang-6.0 1000
sudo update-alternatives --config clang
sudo update-alternatives --config clang++
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment