We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5d3e98b commit 972bc77Copy full SHA for 972bc77
install.sh
@@ -1,7 +1,10 @@
1
#!/bin/bash
2
sudo apt-get install -y build-essential libcap-dev cmake
3
# Install z3
4
-if [ ! $(python -c "import z3") ]; then
+python2 -c "import z3"
5
+NOT_INSTALLED=$?
6
+if [ $NOT_INSTALLED == 1 ]
7
+then
8
git clone https://github.com/Z3Prover/z3
9
cd z3
10
python scripts/mk_make.py --python
@@ -12,7 +15,10 @@ if [ ! $(python -c "import z3") ]; then
12
15
fi
13
16
14
17
# Install triton
-if [ ! $(python -c "import triton") ]; then
18
+python2 -c "import triton"
19
20
21
22
git clone https://github.com/JonathanSalwan/Triton.git
23
cd Triton
24
mkdir build
0 commit comments