diff options
| author | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 13:13:52 +0000 |
|---|---|---|
| committer | ko1 <ko1@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2007-02-14 13:13:52 +0000 |
| commit | 45c729ec070ffe83bad8e857517b45715eb3b12e (patch) | |
| tree | 629ba1319d84e3699756945fc6a3af3d2feddf4a | |
| parent | 45ef2dac1eedeca3b3e0c769580fec08bd30ddd1 (diff) | |
| download | ruby-45c729ec070ffe83bad8e857517b45715eb3b12e.tar.gz ruby-45c729ec070ffe83bad8e857517b45715eb3b12e.tar.xz ruby-45c729ec070ffe83bad8e857517b45715eb3b12e.zip | |
* configure.in: change stack limit to 2MB from 32MB.
* win32/Makefile.sub: ditto.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@11739 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
| -rw-r--r-- | ChangeLog | 6 | ||||
| -rw-r--r-- | configure.in | 2 | ||||
| -rw-r--r-- | win32/Makefile.sub | 2 |
3 files changed, 8 insertions, 2 deletions
@@ -1,3 +1,9 @@ +Wed Feb 14 22:10:21 2007 Koichi Sasada <ko1@atdot.net> + + * configure.in: change stack limit to 2MB from 32MB. + + * win32/Makefile.sub: ditto. + Wed Feb 14 21:39:36 2007 Akinori MUSHA <knu@iDaemons.org> * ext/digest/lib/digest.rb (Digest::self.const_missing): Drop diff --git a/configure.in b/configure.in index 1343697b5..3ae9cecff 100644 --- a/configure.in +++ b/configure.in @@ -1034,7 +1034,7 @@ if test "$with_dln_a_out" != yes; then LDFLAGS="$LDFLAGS -L/lib -L/usr/lib -L/usr/local/lib" rb_cv_dlopen=yes;; cygwin*|mingw*) : ${LDSHARED="${CC} -shared -s"} - XLDFLAGS="$XLDFLAGS -Wl,--stack,0x02000000" + XLDFLAGS="$XLDFLAGS -Wl,--stack,0x00200000" DLDFLAGS="${DLDFLAGS} -Wl,--enable-auto-import,--export-all" : ${LIBPATHENV=""} rb_cv_dlopen=yes ;; diff --git a/win32/Makefile.sub b/win32/Makefile.sub index 26fd8d2b0..a7f13e3df 100644 --- a/win32/Makefile.sub +++ b/win32/Makefile.sub @@ -173,7 +173,7 @@ MINIRUBY = .\miniruby$(EXEEXT) $(MINIRUBYOPT) RUNRUBY = .\ruby$(EXEEXT) "$(srcdir)/runruby.rb" --extout="$(EXTOUT)" -- !if !defined(STACK) -STACK = 0x2000000 +STACK = 0x200000 !endif ORGLIBPATH = $(LIB) |
