From 684c0cf72e20e0367f5b0bfa5d1fa9e9bfb08066 Mon Sep 17 00:00:00 2001 From: escoffon Date: Wed, 30 Sep 1998 22:09:23 +0000 Subject: Increase thew stack size for executables so that runaway recursion does not crash the process. --- win/makefile.vc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/win/makefile.vc b/win/makefile.vc index 23f04c6..bf7ac93 100644 --- a/win/makefile.vc +++ b/win/makefile.vc @@ -4,7 +4,7 @@ # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # # Copyright (c) 1995-1996 Sun Microsystems, Inc. -# RCS: @(#) $Id: makefile.vc,v 1.14 1998/09/14 18:23:58 stanton Exp $ +# RCS: @(#) $Id: makefile.vc,v 1.15 1998/09/30 22:09:23 escoffon Exp $ # Does not depend on the presence of any environment variables in # order to compile tcl; all needed information is derived from @@ -322,18 +322,21 @@ $(TKPLUGINDLL): $(TKOBJS) $(TMPDIR)\tk.res $(TMPDIR)\plugin.def $(WISH): $(WISHOBJS) $(TKLIB) $(TMPDIR)\wish.res set LIB=$(TOOLS32)\lib - $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -out:$@ \ + $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -stack:2300000 \ + -out:$@ \ $(guilibsdll) $(TCLLIBDIR)\$(TCLLIB) $(TKLIB) $(WISHOBJS) $(WISHP): $(WISHOBJS) $(TKPLUGINLIB) $(TMPDIR)\wish.res set LIB=$(TOOLS32)\lib - $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -out:$@ \ + $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -stack:2300000 \ + -out:$@ \ $(guilibsdll) $(TCLLIBDIR)\$(TCLPLUGINLIB) \ $(TKPLUGINLIB) $(WISHOBJS) $(TKTEST): $(TKTESTOBJS) $(TKLIB) $(TMPDIR)\wish.res set LIB=$(TOOLS32)\lib - $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -out:$@ \ + $(link32) $(ldebug) $(guilflags) $(TMPDIR)\wish.res -stack:2300000 \ + -out:$@ \ $(guilibsdll) $(TCLLIBDIR)\$(TCLLIB) $(TKLIB) $(TKTESTOBJS) $(TMPDIR)\tk.def: $(DUMPEXTS) $(TKOBJS) -- cgit v0.12