From ffe6df3f8744814ea80b907436e501bc46ecf390 Mon Sep 17 00:00:00 2001 From: Rahim Kanji Date: Wed, 6 Dec 2023 12:31:30 +0500 Subject: [PATCH] Fixed build_deps_debug compiler flags --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 7201f3042..3cb0fe9f5 100644 --- a/Makefile +++ b/Makefile @@ -133,7 +133,7 @@ build_src: build_lib .PHONY: build_deps_debug build_deps_debug: - cd deps && OPTZ="${O2} -ggdb" CC=${CC} CXX=${CXX} ${MAKE} + cd deps && OPTZ="${O0} -ggdb -DDEBUG" PROXYDEBUG=1 CC=${CC} CXX=${CXX} ${MAKE} .PHONY: build_lib_debug build_lib_debug: build_deps_debug @@ -357,7 +357,7 @@ ifeq ($(DISTRO),"Debian GNU/Linux") update-rc.d proxysql defaults else ifeq ($(DISTRO),"Unknown") -$(warning Not sure how to install proxysql service on this OS) + $(warning Not sure how to install proxysql service on this OS) endif endif endif