Created
September 14, 2018 23:57
-
-
Save patrickshan/a7c1434980caef5ad4fb420056b2e573 to your computer and use it in GitHub Desktop.
install bcc on debian testing (buster)
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 llvm clang dependencies | |
sudo apt install llvm-6.0-dev libclang-dev | |
git clone https://github.com/iovisor/bcc.git | |
mkdir bcc/build; cd bcc/build | |
cmake .. -DCMAKE_INSTALL_PREFIX=/usr | |
make | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
remove llvm3.8 if installed
sudo apt remove --purge libllvm3.8