Skip to content

Commit 06165f5

Browse files
committed
fix cudd script for darwin
1 parent b04d7a3 commit 06165f5

1 file changed

Lines changed: 9 additions & 0 deletions

File tree

contrib/install_yices2.sh

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
#!/bin/bash
22
set -e
33

4+
# Ensure autoreconf is available on macOS
5+
if [[ "$(uname)" == "Darwin" ]]; then
6+
if ! command -v autoreconf >/dev/null 2>&1; then
7+
echo "[INFO] Installing autoconf and automake via Homebrew (macOS)..."
8+
brew update
9+
brew install autoconf automake
10+
fi
11+
fi
12+
413
# libpoly
514
pushd .
615
git clone https://github.com/SRI-CSL/libpoly.git

0 commit comments

Comments
 (0)