From e0b3c69417f867a9adc0c63433a16aa318e32d68 Mon Sep 17 00:00:00 2001 From: heck Date: Sat, 21 Sep 2024 07:46:44 +0200 Subject: [PATCH] Build: fix DEBUG is part of the libDaisy/core/Makefile dont interpret it --- Makefile.conf | 6 ------ 1 file changed, 6 deletions(-) diff --git a/Makefile.conf b/Makefile.conf index e07e6d2..5b1120f 100644 --- a/Makefile.conf +++ b/Makefile.conf @@ -27,9 +27,3 @@ ifneq (,$(findstring g++,$(CXX))) else ifneq (,$(findstring clang,$(CXX))) CXXFLAGS+=-fcolor-diagnostics endif - -ifeq ($(DEBUG),1) - CXXFLAGS+=-g -O0 -else - CXXFLAGS+=-DNDEBUG=1 -O3 -endif