mirror of
https://github.com/zardus/ctf-tools
synced 2025-03-14 05:46:56 +00:00
24 lines
362 B
Bash
Executable file
24 lines
362 B
Bash
Executable file
#!/bin/bash -ex
|
|
|
|
mkdir bin
|
|
|
|
git clone https://github.com/mentebinaria/elfparser-ng elfparser-ng
|
|
pushd elfparser-ng
|
|
git apply ../cstdint.patch
|
|
popd
|
|
|
|
mkdir qt
|
|
pushd qt
|
|
cmake ../elfparser-ng
|
|
make -j
|
|
mv elfparser-ng ../bin/elfparser-gui-ng
|
|
popd
|
|
|
|
mkdir cli
|
|
pushd cli
|
|
cmake -D qt=no ../elfparser-ng
|
|
make -j
|
|
mv elfparser-cli-ng ../bin/
|
|
popd
|
|
|
|
rm -rf cli qt elfparser-ng
|