comment out new problematic ifeq in Makefile

This commit is contained in:
Agent X 2024-12-30 18:00:44 -05:00
parent ade98b3c6f
commit bc27f126cc

View file

@ -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