# HG changeset patch # User William Astle # Date 1360035347 25200 # Node ID c5b1dd523ac443e657620158afc091edd6d66434 # Parent 0c4b3e8b4d0bcdaf023da417c13e800be51ba85e Make default build use -O3 Because it yields such an impressive speedup, make the default build use -O3 instead of -g. If you need the debugging stuff, you can set CFLAGS=-g before building. diff -r 0c4b3e8b4d0b -r c5b1dd523ac4 Makefile --- a/Makefile Fri Feb 01 00:04:19 2013 -0700 +++ b/Makefile Mon Feb 04 20:35:47 2013 -0700 @@ -19,7 +19,7 @@ CPPFLAGS += -I lwlib -DPACKAGE_STRING='"lwtools 4.7+"' LDFLAGS += -L$(PWD)/lwlib -llw -CFLAGS ?= -g -Wall +CFLAGS ?= -O3 -Wall MAIN_TARGETS := lwasm/lwasm$(PROGSUFFIX) \ lwlink/lwlink$(PROGSUFFIX) \