scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit c17fcb83e8bad261d1d50ef2cc36f51d3a5631d1
parent abff0851258d61b3257f50f876daa2a4828b96e1
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 12 Dec 2017 08:29:21 +0000

Add -g by default to SCC_LDFLAGS

Diffstat:
Mconfig.mk.def | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/config.mk.def b/config.mk.def @@ -36,7 +36,7 @@ SCC_CFLAGS = $(MOREFLAGS) \ -g \ $(CFLAGS) -SCC_LDFLAGS = -L$(LIBDIR)/ $(LDFLAGS) +SCC_LDFLAGS = -L$(LIBDIR)/ -g $(LDFLAGS) .s.o: $(AS) $< -o $@