fix compile script

This commit is contained in:
Sergej Schumilo 2022-01-06 17:44:14 +01:00
parent bd7de5f37a
commit bc8ae866db

View File

@ -33,13 +33,13 @@ error () {
compile_libraries (){ compile_libraries (){
echo "[!] compiling capstone4..." echo "[!] compiling capstone4..."
cd capstone_v4 cd capstone_v4
make make -j
cd .. cd ..
echo "[!] capstone4 is ready!" echo "[!] capstone4 is ready!"
echo "[!] compiling libxdc..." echo "[!] compiling libxdc..."
cd libxdc cd libxdc
make CFLAGS="-I../capstone_v4/include/" V=1 make libxdc.a
cd .. cd ..
echo "[!] libxdc is ready!" echo "[!] libxdc is ready!"
} }