3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-05 17:14:07 +00:00
z3/configure
Lev Nachmanson 08940cff8f comment out the call to nra_solver
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
2020-05-15 11:26:40 -07:00

18 lines
418 B
Bash

#!/bin/sh
if test -z $PYTHON; then
PYTHON=python
fi
if ! which $PYTHON > /dev/null; then
echo "'$PYTHON' not found. Try to set the environment variable PYTHON."
exit 1
fi
if ! $PYTHON -c "print('testing')" > /dev/null ; then
echo "'$PYTHON' failed to execute basic test script. Try to set the environment variable PYTHON with a working Python interpreter."
exit 1
fi
$PYTHON scripts/mk_make.py "$@"