Skip to content

Commit

Permalink
Update wheel build script for linux
Browse files Browse the repository at this point in the history
  • Loading branch information
cnheitman committed Nov 1, 2023
1 parent e57e4ea commit 5c25992
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/scripts/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,9 +41,10 @@ RUN echo "[+] Download, build and install Bitwuzla" && \
git clone https://github.com/bitwuzla/bitwuzla.git && \
cd bitwuzla && \
git checkout -b 0.2.0 0.2.0 && \
CC=clang CXX=clang++ PATH=$PATH:/opt/_internal/cpython-3.10.13/bin python3.10 ./configure.py --shared --prefix $(pwd)/install && \
export PY310_PATH=$(dirname $(realpath -L $(which python3.10))) && \
CC=clang CXX=clang++ PATH=$PATH:$PY310_PATH python3.10 ./configure.py --shared --prefix $(pwd)/install && \
cd build && \
PATH=$PATH:/opt/_internal/cpython-3.10.13/bin ninja -j $(nproc) install
PATH=$PATH:$PY310_PATH ninja -j $(nproc) install

# Download Z3.
RUN echo "[+] Download Z3" && \
Expand Down

0 comments on commit 5c25992

Please sign in to comment.