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:
Matthew Flatt 2021-01-23 16:04:40 -07:00
parent 442d7d2d00
commit 87bf20c581

View File

@ -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)