Rakefile: add macro debugging information

This commit is contained in:
King Kévin 2020-11-28 15:19:13 +01:00
parent cc8be1f278
commit 319a02d2b4
1 changed files with 1 additions and 1 deletions

View File

@ -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)