diff options
author | escoffon <escoffon> | 1998-09-30 22:09:23 (GMT) |
---|---|---|
committer | escoffon <escoffon> | 1998-09-30 22:09:23 (GMT) |
commit | 684c0cf72e20e0367f5b0bfa5d1fa9e9bfb08066 (patch) | |
tree | 2d36c8a8d6b7a87ba16d0a4de56fbb8e681c6891 | |
parent | 5e674ce6194b24cecf0ad4ef5aaaf5c790451138 (diff) | |
download | tk-684c0cf72e20e0367f5b0bfa5d1fa9e9bfb08066.zip tk-684c0cf72e20e0367f5b0bfa5d1fa9e9bfb08066.tar.gz tk-684c0cf72e20e0367f5b0bfa5d1fa9e9bfb08066.tar.bz2 |
Increase thew stack size for executables so that runaway recursion does
not crash the process.
-rw-r--r-- | win/makefile.vc | 11 |
1 files 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) |