summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoreban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-24 05:27:41 +0000
committereban <eban@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2002-04-24 05:27:41 +0000
commit6c33a7d9fdd6c24cb2d4bce4307381e0f40179cf (patch)
tree0e5a177dbf5de14a52728a4134619ab15b50f78e
parentbcd39ffcecae088b809f4e0b990a31522a03bad5 (diff)
downloadruby-6c33a7d9fdd6c24cb2d4bce4307381e0f40179cf.tar.gz
ruby-6c33a7d9fdd6c24cb2d4bce4307381e0f40179cf.tar.xz
ruby-6c33a7d9fdd6c24cb2d4bce4307381e0f40179cf.zip
* configure.in: set size of the initial stack from
2MB to 32MB on MinGW/Cygwin. git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@2404 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog5
-rw-r--r--configure.in2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index 4d47fddaa..ea59f9251 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+Wed Apr 24 14:21:41 2002 WATANABE Hirofumi <eban@ruby-lang.org>
+
+ * configure.in: set size of the initial stack from
+ 2MB to 32MB on MinGW/Cygwin.
+
Wed Apr 24 14:06:35 2002 Yukihiro Matsumoto <matz@ruby-lang.org>
* numeric.c (num_step): try to reduce residual on Float operations.
diff --git a/configure.in b/configure.in
index 2f231ef3e..d97df0252 100644
--- a/configure.in
+++ b/configure.in
@@ -103,7 +103,6 @@ AC_CHECK_PROGS(AR, ar aal, ar)
case "$target_os" in
cygwin*|mingw*)
AC_CHECK_TOOL(NM, nm)
- AC_CHECK_TOOL(AS, as)
AC_CHECK_TOOL(WINDRES, windres)
target_cpu=`echo $target_cpu | sed s/i.86/i386/`
: ${enable_shared=yes}
@@ -711,6 +710,7 @@ if test "$with_dln_a_out" != yes; then
LDFLAGS="-L/lib -L/usr/lib -L/usr/local/lib"
rb_cv_dlopen=yes;;
cygwin*|mingw*) : ${LDSHARED="${CC} -shared -s"}
+ LDFLAGS='-Wl,--stack,0x02000000'
rb_cv_dlopen=yes ;;
*) LDSHARED='ld' ;;
esac