Last active
June 24, 2024 00:16
-
-
Save kwilczynski/23935e69eb29be5f20ab37cc32bfd7ae to your computer and use it in GitHub Desktop.
Build Coccinelle
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
export PATH='/usr/local/bin:/usr/local/sbin:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin' | |
cd .. | |
python3 -m venv coccinelle | |
cd - | |
. bin/activate | |
make clean | |
./autogen | |
autoreconf -i | |
OR | |
autoconf -i | |
autoheader | |
automake --add-missing | |
./configure --prefix='/usr' --enable-pcre-syntax | |
OR | |
./configure --prefix='/usr' --exec-prefix='/usr/bin' --enable-pcre-syntax | |
make -j$(nproc) # Sometimes breaks OCaml build! | |
OR | |
make | |
make DESTDIR='/tmp/coccinelle' install | |
OR | |
sudo make install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment