Windows: turn on string pooling for CS executables
Visual Studio 2015 duplicates the "Replace me for EXE hack" string in the GRacket executable, which breaks the hack. Adding the /GF compiler flag counteracts that duplication, and it's consistent with `<StringPooling>true</StringPooling>` in the BC projects.
This commit is contained in:
parent
442d7d2d00
commit
87bf20c581
|
@ -24,7 +24,7 @@ MAIN_DEPS = ..\..\start\config.inc \
|
|||
|
||||
MEMMOD = ..\..\start\MemoryModule.c
|
||||
|
||||
FLAGS = /DWIN32 /Ox /MT
|
||||
FLAGS = /DWIN32 /Ox /MT /GF
|
||||
COMP_SUBDIR = /DCS_COMPILED_SUBDIR=1
|
||||
|
||||
all: $(DEST) $(GDEST)
|
||||
|
|
Loading…
Reference in New Issue
Block a user