Created
June 15, 2020 10:29
-
-
Save agustingianni/33029b011da588c4fe52a6146b5412fb to your computer and use it in GitHub Desktop.
This file contains 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
sudo -i | |
# Add aliases to the versioned binaries. | |
update-alternatives --install /usr/bin/clang clang /usr/bin/clang-10 100 | |
update-alternatives --install /usr/bin/clang++ clang++ /usr/bin/clang++-10 100 | |
update-alternatives --install /usr/bin/clangd clangd /usr/bin/clangd-10 100 | |
update-alternatives --install /usr/bin/lldb lldb /usr/bin/lldb-10 100 | |
update-alternatives --install /usr/bin/llvm-config llvm-config /usr/bin/llvm-config-10 100 | |
# Add links for cc and c++ | |
update-alternatives --install /usr/bin/cc cc /usr/bin/clang 100 | |
update-alternatives --install /usr/bin/c++ c++ /usr/bin/clang++ 100 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment