mirror of
https://github.com/mirror/make.git
synced 2025-03-26 12:04:42 +08:00
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.
This commit is contained in:
parent
309768aff1
commit
10a4b120bd
@ -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/
|
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\
|
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\
|
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
|
all: config.h subproc Release Debug
|
||||||
|
|
||||||
@ -72,7 +72,7 @@ $(OUTDIR):
|
|||||||
|
|
||||||
LIBS = kernel32.lib user32.lib advapi32.lib
|
LIBS = kernel32.lib user32.lib advapi32.lib
|
||||||
|
|
||||||
#guile = $(OUTDIR)/guile.obj
|
guile = $(OUTDIR)/guile.obj
|
||||||
|
|
||||||
OBJS = \
|
OBJS = \
|
||||||
$(OUTDIR)/ar.obj \
|
$(OUTDIR)/ar.obj \
|
||||||
|
Loading…
Reference in New Issue
Block a user