Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

solidity: Disable Z3 build in dockerfile #3831

Merged
merged 1 commit into from
May 18, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 0 additions & 9 deletions projects/solidity/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@ RUN git clone --recursive -b boost-1.69.0 https://github.com/boostorg/boost.git
RUN git clone --depth 1 https://github.com/google/libprotobuf-mutator.git
RUN git clone --branch="v0.4.0" --recurse-submodules \
https://github.com/ethereum/evmone.git
RUN git clone --branch="z3-4.8.7" https://github.com/Z3Prover/z3.git

# Install statically built dependencies in "/usr" directory
# Install boost
Expand Down Expand Up @@ -62,12 +61,4 @@ RUN cd $SRC/evmone; \
ninja; \
ninja install;

# Install Z3
RUN cd $SRC/z3; \
mkdir -p build; \
cd build; \
LDFLAGS=$CXXFLAGS cmake -DZ3_BUILD_LIBZ3_SHARED=OFF -DCMAKE_INSTALL_PREFIX=/usr -DCMAKE_BUILD_TYPE=Release ..; \
make libz3 -j; \
make install;

COPY build.sh $SRC/