3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-12 20:18:18 +00:00

Fixing new build system for OSX

Signed-off-by: Leonardo de Moura <leonardo@z3-mac.local>
This commit is contained in:
Leonardo de Moura 2012-10-26 18:28:49 +01:00
parent bf27090641
commit deb5ee395a
4 changed files with 9 additions and 7 deletions

View file

@ -93,7 +93,7 @@ AC_PROG_GREP
AC_PROG_SED AC_PROG_SED
# Sets OPENMP_CFLAGS # Sets OPENMP_CFLAGS
AC_OPENMP m4_ifdef([AC_OPENMP], [AC_OPENMP])
AR=ar AR=ar
AC_SUBST(AR) AC_SUBST(AR)

View file

@ -56,7 +56,9 @@ public:
explicit symbol(char const * d); explicit symbol(char const * d);
explicit symbol(unsigned idx): explicit symbol(unsigned idx):
m_data(BOXTAGINT(char const *, idx, 1)) { m_data(BOXTAGINT(char const *, idx, 1)) {
#ifndef _AMD64_
SASSERT(idx < (SIZE_MAX >> PTR_ALIGNMENT)); SASSERT(idx < (SIZE_MAX >> PTR_ALIGNMENT));
#endif
} }
static symbol dummy() { return m_dummy; } static symbol dummy() { return m_dummy; }
static const symbol null; static const symbol null;