summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorMorgan Deters <mdeters@cs.nyu.edu>2013-01-28 09:30:12 -0500
committerMorgan Deters <mdeters@cs.nyu.edu>2013-01-28 09:52:20 -0500
commit31c768863403d50f7682ecbb7f72a4486de0e503 (patch)
treed8552410178c7c799302f80984832f733abcf3cc /configure.ac
parentc5d1a5d8f898bf22c6bbc98f1d484b07706c035b (diff)
some fixes for win32, including ability to "make check" win32 builds via wine
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac
index 6af7cf97c..bf5938e70 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1125,11 +1125,16 @@ CFLAGS="${CFLAGS:+$CFLAGS }$CVC4CFLAGS -Wno-deprecated -fexceptions"
LDFLAGS="${LDFLAGS:+$LDFLAGS }$CVC4LDFLAGS"
# visibility flag not supported for Windows builds
+# also increase default stack size for Windows binaries
case $host_os in
(*mingw*) FLAG_VISIBILITY_HIDDEN=
+ cvc4_LDFLAGS=-Wl,--stack,134217728
+ pcvc4_LDFLAGS=-Wl,--stack,134217728
esac
AC_SUBST(FLAG_VISIBILITY_HIDDEN)
+AC_SUBST(cvc4_LDFLAGS)
+AC_SUBST(pcvc4_LDFLAGS)
# mk_include
#
generated by cgit on debian on lair
contact matthew@masot.net with questions or feedback