scc

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

commit a6cab76f9a90a0dbadf789b1b68aa0c05fc90ff7
parent 8137246e26d881141bcdc525d9dc0b43ba5cf5db
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Mon, 10 Aug 2015 23:20:25 +0200

Compile optimized version by default

Diffstat:
Mconfig.mk | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/config.mk b/config.mk @@ -12,6 +12,6 @@ LD = $(CC) AR = ar # for Plan9 add -D_SUSV2_SOURCE -DNBOOL -CPPFLAGS = -CFLAGS = -std=c99 +CPPFLAGS = -DNDEBUG +CFLAGS = -O2 -std=c99 LDFLAGS = -s