Skip to content

Commit

Permalink
Use Z3 from github
Browse files Browse the repository at this point in the history
  • Loading branch information
serpilliere committed Apr 25, 2018
1 parent 567f7ae commit acd5d21
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -50,11 +50,14 @@ RUN cd /opt && \
rm -rf /opt/miasm-master.zip

# Get z3
ADD http://download-codeplex.sec.s-msft.com/Download/SourceControlFileDownload.ashx?ProjectName=z3&changeSetId=cee7dd39444c9060186df79c2a2c7f8845de415b /opt/z3.zip
RUN cd /opt && \
mkdir z3 && cd z3 && \
unzip -q ../z3.zip && python scripts/mk_make.py && cd build && make -j 4 && make install && \
rm /opt/z3.zip
git clone https://github.com/Z3Prover/z3 z3 && \
cd z3 && \
python scripts/mk_make.py && \
cd build && \
make && \
make install && \
make clean

# Clean
RUN apt-get -qq remove --purge make git unzip && \
Expand Down

0 comments on commit acd5d21

Please sign in to comment.