From 04b975f3d43418a818f0026dce4c3b12b1ccac0b Mon Sep 17 00:00:00 2001 From: terminx Date: Sat, 13 Feb 2016 21:06:15 +0000 Subject: [PATCH] Remove -fno-lto-odr-type-merging, turns out it's an obscure option that isn't enabled in the synthesis toolchain. Oh well. git-svn-id: https://svn.eduke32.com/eduke32@5622 1a8010ca-5511-0410-912e-c29ae57300e0 --- polymer/eduke32/Makefile.common | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/polymer/eduke32/Makefile.common b/polymer/eduke32/Makefile.common index 2d2880a56..ced560718 100644 --- a/polymer/eduke32/Makefile.common +++ b/polymer/eduke32/Makefile.common @@ -660,11 +660,11 @@ ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 4))) L_SSP := -lssp endif -ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 5))) - ifneq (0,$(LTO)) - COMMONFLAGS += -fno-lto-odr-type-merging - endif -endif +# ifeq (1,$(strip $(shell expr $(GCC_MAJOR) \>= 5))) +# ifneq (0,$(LTO)) +# COMMONFLAGS += -fno-lto-odr-type-merging +# endif +# endif # NOTE: If your setup doesn't have libstdc++, you can try using libsupc++. # Search for STDCPPLIB below and change it to -lsupc++.