From 6dea8d9f2ea61a74286d6fd4ec1ca523e4f6cb04 Mon Sep 17 00:00:00 2001 From: JohannesGaessler Date: Sat, 27 May 2023 21:28:08 +0200 Subject: [PATCH] LLAMA_DEBUG adds debug symbols --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 70bd5e90a..8e8d426c5 100644 --- a/Makefile +++ b/Makefile @@ -44,7 +44,11 @@ CFLAGS = -I. -O3 -std=c11 -fPIC CXXFLAGS = -I. -I./examples -O3 -std=c++11 -fPIC LDFLAGS = -ifndef LLAMA_DEBUG +ifdef LLAMA_DEBUG + CFLAGS += -O0 -g + CXXFLAGS += -O0 -g + LDFLAGS += -g +else CFLAGS += -DNDEBUG CXXFLAGS += -DNDEBUG endif