From 00fb5c47080be2a8b53c76cb0076fc41706e7f74 Mon Sep 17 00:00:00 2001 From: Sam V Date: Wed, 13 Dec 2023 21:03:25 +0100 Subject: [PATCH] Fix typo in Makefile --- linux/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/linux/Makefile b/linux/Makefile index 47aa76e0e..df65701c3 100644 --- a/linux/Makefile +++ b/linux/Makefile @@ -46,7 +46,7 @@ BASE_CFLAGS+=-DNDEBUG -DPOSIX -D_POSIX -DLINUX -D_LINUX -DGNUC -DNO_MALLOC_OVERR # See https://gcc.gnu.org/onlinedocs/gcc/Optimize-Options.html#index-flifetime-dse for more information about this flag # fno-gnu-unique is needed to disable a compiler optimization that prevents dlclose from unloading mod dlls, # causing them to retain state and crash when the engine tries to access memory in an invalid way -# See https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#index-fno-gnu-unique for more informatio about this flag +# See https://gcc.gnu.org/onlinedocs/gcc/Code-Gen-Options.html#index-fno-gnu-unique for more information about this flag ifeq "$(COMPILER)" "g++" BASE_CFLAGS+=-flifetime-dse=1 -fno-gnu-unique endif