Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorZoltan Varga <vargaz@gmail.com>2005-04-09 18:24:00 +0400
committerZoltan Varga <vargaz@gmail.com>2005-04-09 18:24:00 +0400
commitd0ef0978901d5a84728bdd4e83204f98ccc34da4 (patch)
treea11ea72d464e65c2c7c944b922844d57f8bf756d /configure.in
parent1de7831e7c1ed7adb5b1e97436e379ac75ca596c (diff)
2005-04-09 Zoltan Varga <vargaz@freemail.hu>
* configure.in: Add --with-large-heap option to enable support for GC heaps larger than 3GB. Hopefully fixes #73882. svn path=/trunk/mono/; revision=42733
Diffstat (limited to 'configure.in')
-rw-r--r--configure.in5
1 files changed, 5 insertions, 0 deletions
diff --git a/configure.in b/configure.in
index 28ee637f78f..7290f658998 100644
--- a/configure.in
+++ b/configure.in
@@ -517,6 +517,11 @@ case "x$gc" in
;;
esac
+AC_ARG_WITH(large-heap, [ --with-large-heap=yes,no Enable support for GC heaps larger than 3GB], [large_heap=$withval], [large_heap=no])
+if test "x$large_heap" = "xyes"; then
+ echo "FOO"
+ CPPFLAGS="$CPPFLAGS -DLARGE_CONFIG"
+fi
# tell libgc/configure about what we want
ac_configure_args="$ac_configure_args --disable-embed-check --with-libgc-threads=$libgc_threads"