Skip to content

Commit

Permalink
doc: Fix the build guide for the Arch Linux (iovisor#4891)
Browse files Browse the repository at this point in the history
After LLVM 15.0.7.2 on the Arch Linux, the package maintainer remove the static library default, FYI https://gitlab.archlinux.org/archlinux/packaging/packages/llvm/-/commit/3e452a15b68d156a9ef5608e8f6e1870d192d954

So we need add -DENABLE_LLVM_SHARED=on default for the Arch Linux

Signed-off-by: Manjusaka <[email protected]>
  • Loading branch information
Zheaoli committed Jan 30, 2024
1 parent 052813c commit 7871925
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion INSTALL.md
Original file line number Diff line number Diff line change
Expand Up @@ -722,7 +722,7 @@ git clone https://github.com/iovisor/bcc.git
pushd .
mkdir bcc/build
cd bcc/build
cmake .. -DPYTHON_CMD=python3 # for python3 support
cmake -DENABLE_LLVM_SHARED=on .. -DPYTHON_CMD=python3 # for python3 support
make -j$(nproc)
sudo make install
cd src/python
Expand Down

0 comments on commit 7871925

Please sign in to comment.