Lichen

Changeset

658:ef6dacfb0392
2017-03-05 Paul Boddie raw files shortlog changelog graph Added a reasonable optimisation level. -O3 may provide slightly better performance; -Os reduces the program size by a noticeable amount.
templates/Makefile (file)
     1.1 --- a/templates/Makefile	Sun Mar 05 19:14:04 2017 +0100
     1.2 +++ b/templates/Makefile	Sun Mar 05 22:38:54 2017 +0100
     1.3 @@ -4,7 +4,7 @@
     1.4  
     1.5  SRC += exceptions.c main.c ops.c progops.c progtypes.c
     1.6  OBJ = $(SRC:.c=.o)
     1.7 -CFLAGS += -Wall -I. -finput-charset=UTF-8
     1.8 +CFLAGS += -Wall -I. -finput-charset=UTF-8 -O2
     1.9  LDFLAGS += -lm -lgc
    1.10  
    1.11  ifdef ARCH