We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b04d7a3 commit 06165f5Copy full SHA for 06165f5
1 file changed
contrib/install_yices2.sh
@@ -1,6 +1,15 @@
1
#!/bin/bash
2
set -e
3
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
+
13
# libpoly
14
pushd .
15
git clone https://github.com/SRI-CSL/libpoly.git
0 commit comments