From 319a02d2b4168c78fb3a329971e6f010b9d52c7d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?King=20K=C3=A9vin?= Date: Sat, 28 Nov 2020 15:19:13 +0100 Subject: [PATCH] Rakefile: add macro debugging information --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index 464e861..28c9d73 100644 --- a/Rakefile +++ b/Rakefile @@ -49,7 +49,7 @@ cflags = [ENV["CFLAGS"]] # optimize for size cflags << "-Os" # add debug symbols (remove for smaller release) -cflags << "-ggdb" +cflags << "-ggdb3" # use C99 (supported by most an sufficient) cflags << "-std=c99" # have strict warning (for better code)