From 867af9f090a0c7bcf970d8c891e483bf0a3d74a6 Mon Sep 17 00:00:00 2001 From: Clownacy Date: Wed, 22 Jan 2020 23:34:12 +0000 Subject: [PATCH] Add option to the Makefile to enable LTO --- Makefile | 4 ++++ README.md | 1 + 2 files changed, 5 insertions(+) diff --git a/Makefile b/Makefile index ae650f59..106daf1e 100644 --- a/Makefile +++ b/Makefile @@ -16,6 +16,10 @@ else FILENAME_DEF = CSE2_debug.exe endif +ifeq ($(LTO), 1) + ALL_CXXFLAGS += -flto +endif + ifeq ($(JAPANESE), 1) DATA_DIRECTORY = $(ASSETS_DIRECTORY)/data_jp diff --git a/README.md b/README.md index 7455278b..f448a379 100644 --- a/README.md +++ b/README.md @@ -52,6 +52,7 @@ Name | Function --------|-------- `RELEASE=1` | Compile a release build (optimised, stripped, etc.) `STATIC=1` | Produce a statically-linked executable (so you don't need to bundle DLL files) +`LTO=1` | Enable link-time optimisation `JAPANESE=1` | Enable the Japanese-language build (instead of the unofficial Aeon Genesis English translation) `FIX_BUGS=1` | Fix various bugs in the game `DEBUG_SAVE=1` | Re-enable the dummied-out 'Debug Save' option, and the ability to drag-and-drop save files onto the window