We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8d8e330 commit 41c010cCopy full SHA for 41c010c
scripts/build.sh
@@ -26,6 +26,7 @@ ubuntu_setup () {
26
libboost-all-dev ninja-build python3-setuptools \
27
libtinfo-dev pkg-config python3-pip python3-toml \
28
openjdk-11-jdk \
29
+ libbz2-dev liblzma-dev libzstd-dev \
30
"
31
32
# Create deps for Clang and Z3_SLHV
@@ -71,7 +72,14 @@ ubuntu_setup () {
71
72
fi
73
cd Z3-SLHV
74
if [ ! -d "z3_slhv_lib" ]; then
- rm -r build && python3 mk_${STATIC}_cmake.py
75
+ if [ -d "build" ]; then
76
+ rm -rf build/
77
+ fi
78
+ if [ $STATIC = ON ]; then
79
+ python3 mk_static_cmake.py
80
+ else
81
+ python3 mk_shared_cmake.py
82
83
cd build && ninja install
84
85
cd $DEPS_ROOT/Z3-SLHV
0 commit comments