summaryrefslogtreecommitdiff
path: root/NMakefile.template
diff options
context:
space:
mode:
authorChristian Boos <cboos@edgewall.org>2013-10-23 19:56:18 +0300
committerEli Zaretskii <eliz@gnu.org>2013-10-23 19:56:18 +0300
commit0a45344d11047164c54fe90bcadb09c3a7629139 (patch)
tree6d7d3c758ae77b05e8aa5dd071dba08587336b13 /NMakefile.template
parentd11dafc11eae2f8b0c3bbe2bb8fb8b5b3f3876a3 (diff)
downloadmake-0a45344d11047164c54fe90bcadb09c3a7629139.tar.gz
Fix SV bug #40227 with respect to stack size set for the MSVC build.
* NMakefile.template (/STACK): Increase to 0x400000, mainly for the 64-bit builds. Fixes SV bug #40227. Copyright-paperwork-exempt: Yes. (guile): Uncomment.
Diffstat (limited to 'NMakefile.template')
-rw-r--r--NMakefile.template6
1 files changed, 3 insertions, 3 deletions
diff --git a/NMakefile.template b/NMakefile.template
index 8a787a14..3e1a30b2 100644
--- a/NMakefile.template
+++ b/NMakefile.template
@@ -32,9 +32,9 @@ CFLAGS_debug = $(CFLAGS_any) /Od /D DEBUG /D _DEBUG /FR.\WinDebug/ /Fp.\WinDebug
CFLAGS_release = $(CFLAGS_any) /O2 /D NDEBUG /FR.\WinRel/ /Fp.\WinRel/make.pch /Fo.\WinRel/
LDFLAGS_debug = w32\subproc\WinDebug\subproc.lib /NOLOGO /SUBSYSTEM:console\
- /INCREMENTAL:no /PDB:WinDebug/make.pdb /OUT:WinDebug/make.exe /DEBUG
+ /STACK:0x400000 /INCREMENTAL:no /PDB:WinDebug/make.pdb /OUT:WinDebug/make.exe /DEBUG
LDFLAGS_release = w32\subproc\WinRel\subproc.lib /NOLOGO /SUBSYSTEM:console\
- /INCREMENTAL:no /OUT:WinRel/make.exe
+ /STACK:0x400000 /INCREMENTAL:no /OUT:WinRel/make.exe
all: config.h subproc Release Debug
@@ -72,7 +72,7 @@ $(OUTDIR):
LIBS = kernel32.lib user32.lib advapi32.lib
-#guile = $(OUTDIR)/guile.obj
+guile = $(OUTDIR)/guile.obj
OBJS = \
$(OUTDIR)/ar.obj \