From 685bce432126e9a713854265f627fd4855230cec Mon Sep 17 00:00:00 2001 From: Maxime Coste Date: Tue, 5 Mar 2024 22:18:37 +1100 Subject: [PATCH] Re-enable debug symbols in release builds --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 96a5e4d60..f055d752f 100644 --- a/Makefile +++ b/Makefile @@ -13,10 +13,10 @@ compress-suffix-bzip = bz2 compress-suffix-zstd = zst CPPFLAGS-debug-yes = -DKAK_DEBUG -CXXFLAGS-debug-yes = -O0 -g +CXXFLAGS-debug-yes = -O0 -g3 tag-debug-yes = .debug -CXXFLAGS-debug-no = -O3 +CXXFLAGS-debug-no = -O3 -g3 tag-debug-no = .opt CXXFLAGS-sanitize-address = -fsanitize=address