# HG changeset patch # User Paul Boddie # Date 1547745965 -3600 # Node ID 246c536e2d95d851b3a78bdca83caf8836e651a3 # Parent 0c3887bb6ff8e678d76e13c6c784dbf4ccd4e6cd Prevent warnings about exception__prev from cexcept.h (maybe-uninitialized). These might be selectively disabled, but the mechanism for doing so is not obvious. diff -r 0c3887bb6ff8 -r 246c536e2d95 templates/Makefile --- a/templates/Makefile Thu Jan 17 14:11:37 2019 +0100 +++ b/templates/Makefile Thu Jan 17 18:26:05 2019 +0100 @@ -4,7 +4,7 @@ SRC += calls.c exceptions.c main.c ops.c progops.c progtypes.c OBJ = $(SRC:.c=.o) -CFLAGS += -Wall -I. -finput-charset=UTF-8 +CFLAGS += -Wall -Wno-maybe-uninitialized -I. -finput-charset=UTF-8 LDFLAGS += -lm -lgc ifdef ARCH