From d9fa122fd23f9769758026fa9866dda0379f3086 Mon Sep 17 00:00:00 2001 From: Nicholas Marriott Date: Wed, 29 Apr 2020 15:21:15 +0100 Subject: [PATCH] Do not want -O0 by default. --- Makefile.am | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile.am b/Makefile.am index 97174c1d..a395ecdb 100644 --- a/Makefile.am +++ b/Makefile.am @@ -22,7 +22,7 @@ LDADD = $(LIBOBJS) if IS_GCC AM_CFLAGS += -std=gnu99 -O2 if IS_DEBUG -AM_CFLAGS += -g -O0 +AM_CFLAGS += -g AM_CFLAGS += -Wno-long-long -Wall -W -Wformat=2 AM_CFLAGS += -Wmissing-prototypes -Wstrict-prototypes -Wmissing-declarations AM_CFLAGS += -Wwrite-strings -Wshadow -Wpointer-arith -Wsign-compare