solidity/scripts/install_static_z3.sh

9 lines
198 B
Bash
Raw Normal View History

2019-06-03 16:27:29 +00:00
#!/usr/bin/env bash
2019-12-03 14:08:06 +00:00
git clone --depth 1 --branch z3-4.8.7 https://github.com/Z3Prover/z3.git
2019-06-03 16:27:29 +00:00
cd z3
mkdir build
cd build
2019-12-03 14:08:06 +00:00
LDFLAGS="-static" cmake -DZ3_BUILD_LIBZ3_SHARED=OFF ..
2019-06-03 16:27:29 +00:00
make -j 4
make install