# HG changeset patch # User Paul Boddie # Date 1488749934 -3600 # Node ID ef6dacfb039203b5b2ca72d459511b8b6bc28840 # Parent 196988ae83cb87bad335406018b8d28c773ec1fa Added a reasonable optimisation level. -O3 may provide slightly better performance; -Os reduces the program size by a noticeable amount. diff -r 196988ae83cb -r ef6dacfb0392 templates/Makefile --- a/templates/Makefile Sun Mar 05 19:14:04 2017 +0100 +++ b/templates/Makefile Sun Mar 05 22:38:54 2017 +0100 @@ -4,7 +4,7 @@ SRC += exceptions.c main.c ops.c progops.c progtypes.c OBJ = $(SRC:.c=.o) -CFLAGS += -Wall -I. -finput-charset=UTF-8 +CFLAGS += -Wall -I. -finput-charset=UTF-8 -O2 LDFLAGS += -lm -lgc ifdef ARCH