ctf-tools/z3/install

17 lines
231 B
Text
Raw Normal View History

2016-09-21 12:03:01 +00:00
#!/bin/bash
git clone https://github.com/Z3Prover/z3
cd z3
# move to ctftools virtual env
source ${VIRTUALENVWRAPPER_SCRIPT}
workon ctftools
# install z3
python scripts/mk_make.py --python
cd build
make
make install
deactivate