From f193fef3ce0d09f14d34863894384b26da6c2e46 Mon Sep 17 00:00:00 2001 From: KeybadeBlox Date: Mon, 9 Feb 2026 23:53:24 -0500 Subject: [PATCH] Enable string pooling JSRF evidently has string pooling enabled (i.e. program-wide deduplication of strings), so we'll want it in our compiler settings as well. --- decompile/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decompile/Makefile b/decompile/Makefile index 3303154..95a0617 100644 --- a/decompile/Makefile +++ b/decompile/Makefile @@ -3,7 +3,7 @@ all: src/JSRF/Jet2.obj # Simple inference rule for producing object files .SUFFIXES: .cpp .obj .cpp.obj: - CL.EXE /nologo /Wall /TP /W3 /Ogityb0 /MT /GX /Fo$@ /c $< + CL.EXE /nologo /Wall /TP /W3 /Ogityb0 /MT /Gf /GX /Fo$@ /c $< # Header files used for each object src/JSRF/Jet2.obj: src/JSRF/Core.hpp src/Std.hpp src/XDK/D3D.hpp\