3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-06 09:34:08 +00:00

fixed configure.ac, now fails if gcc is not installed

Signed-off-by: Leonardo de Moura <leonardo@microsoft.com>
This commit is contained in:
Leonardo de Moura 2012-10-27 00:56:27 -07:00
parent 6c4e163bfe
commit 946a06cddb

View file

@ -1,4 +1,6 @@
AC_INIT([z3], [4.2])
AC_CONFIG_SRCDIR(src/util/util.cpp)
AC_PREFIX_DEFAULT(/usr)
###################
#
@ -80,7 +82,12 @@ fi
#
###################
# Sets CXX
AC_PROG_CXX(g++)
AC_LANG([C++])
AC_PROG_CXX(g++ false)
AC_PROG_CC
if test $CXX = "false"; then
AC_MSG_ERROR([C++ compiler was not found])
fi
AC_PROG_MAKE_SET