From bc27f126cca98104048cd023ed0e6628036eee91 Mon Sep 17 00:00:00 2001 From: Agent X <44549182+AgentXLP@users.noreply.github.com> Date: Mon, 30 Dec 2024 18:00:44 -0500 Subject: [PATCH] comment out new problematic ifeq in Makefile --- Makefile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index f0c4d86f7..d77872fca 100644 --- a/Makefile +++ b/Makefile @@ -988,10 +988,11 @@ else endif IS_DEV_OR_DEBUG := $(or $(filter 1,$(DEVELOPMENT)),$(filter 1,$(DEBUG)),0) -ifeq ($(IS_DEV_OR_DEBUG),0) - CFLAGS += -fno-ident -fno-common -fno-asynchronous-unwind-tables -ffile-prefix-map=$(PWD)=. -D__DATE__="\"\"" -D__TIME__="\"\"" -Wno-builtin-macro-redefined - LDFLAGS += -Wl,--build-id=none -endif +# causes a lot of issues +# ifeq ($(IS_DEV_OR_DEBUG),0) +# CFLAGS += -fno-ident -fno-common -fno-asynchronous-unwind-tables -ffile-prefix-map=$(PWD)=. -D__DATE__="\"\"" -D__TIME__="\"\"" -Wno-builtin-macro-redefined +# LDFLAGS += -Wl,--build-id=none +# endif # Prevent a crash with -sopt export LANG := C