Lichen

Changeset

865:246c536e2d95
2019-01-17 Paul Boddie raw files shortlog changelog graph Prevent warnings about exception__prev from cexcept.h (maybe-uninitialized). These might be selectively disabled, but the mechanism for doing so is not obvious.
templates/Makefile (file)
     1.1 --- a/templates/Makefile	Thu Jan 17 14:11:37 2019 +0100
     1.2 +++ b/templates/Makefile	Thu Jan 17 18:26:05 2019 +0100
     1.3 @@ -4,7 +4,7 @@
     1.4  
     1.5  SRC += calls.c 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 -Wno-maybe-uninitialized -I. -finput-charset=UTF-8
     1.9  LDFLAGS += -lm -lgc
    1.10  
    1.11  ifdef ARCH