We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Currently CFLAGS includes -g by default. LDFLAGS does not include it at all.
-g
It would be better to do this in Makefile:
ifeq (${DEBUG},1) CFLAGS += -g LDFLAGS += -g endif
I'll track this issue and make a PR when my load is a bit less cc @rajames