mirror of
https://github.com/Z3Prover/z3
synced 2025-04-13 04:28:17 +00:00
Fixing new build system for OSX
Signed-off-by: Leonardo de Moura <leonardo@z3-mac.local>
This commit is contained in:
parent
bf27090641
commit
deb5ee395a
|
@ -93,7 +93,7 @@ AC_PROG_GREP
|
|||
AC_PROG_SED
|
||||
|
||||
# Sets OPENMP_CFLAGS
|
||||
AC_OPENMP
|
||||
m4_ifdef([AC_OPENMP], [AC_OPENMP])
|
||||
|
||||
AR=ar
|
||||
AC_SUBST(AR)
|
||||
|
|
|
@ -56,7 +56,9 @@ public:
|
|||
explicit symbol(char const * d);
|
||||
explicit symbol(unsigned idx):
|
||||
m_data(BOXTAGINT(char const *, idx, 1)) {
|
||||
#ifndef _AMD64_
|
||||
SASSERT(idx < (SIZE_MAX >> PTR_ALIGNMENT));
|
||||
#endif
|
||||
}
|
||||
static symbol dummy() { return m_dummy; }
|
||||
static const symbol null;
|
||||
|
|
Loading…
Reference in a new issue