Skip to content

Commit

Permalink
[tmp, bitwuzla] Remied libgmp dependency.
Browse files Browse the repository at this point in the history
  • Loading branch information
S1eGa committed Nov 21, 2023
1 parent 40ecf5c commit a1506db
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/build/p-bitwuzla-linux-ubuntu.inc
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ install_build_dependencies_bitwuzla() {
with_sudo apt -y --no-install-recommends install "${dependencies[@]}"

with_sudo apt-get update -y
with_sudo apt-get -y --no-install-recommends install pkg-config cmake-data libgmp-dev
with_sudo apt-get -y --no-install-recommends install pkg-config cmake-data

with_sudo pip3 install --user meson
base_path="$(python3 -m site --user-base)"
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/p-bitwuzla.inc
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ download_bitwuzla() {

build_bitwuzla() {
pushd "${BASE}/bitwuzla-${BITWUZLA_VERSION}"
./configure.py --build-dir "${BITWUZLA_BUILD_PATH}" --prefix "${BITWUZLA_INSTALL_PATH}"
./configure.py --build-dir "${BITWUZLA_BUILD_PATH}" --prefix "${BITWUZLA_INSTALL_PATH}" --static
popd
cd "${BITWUZLA_BUILD_PATH}" || return 1
yes n | ninja install
Expand Down
2 changes: 1 addition & 1 deletion scripts/build/p-klee-linux-ubuntu.inc
Original file line number Diff line number Diff line change
Expand Up @@ -12,12 +12,12 @@ install_build_dependencies_klee() {
python3-wheel
pkg-config
cmake-data
libgmp-dev
)

if [[ "${SOLVERS:-}" == "metaSMT" ]]; then
dependencies+=(
libboost-dev
libgmp-dev
)
fi
if [[ $(to_bool "${COVERAGE}") -eq 1 ]]; then
Expand Down

0 comments on commit a1506db

Please sign in to comment.