From: Nathan Wagner Date: Fri, 15 Feb 2019 18:34:18 +0000 (+0000) Subject: remove -O3 from sqlite3 compile options X-Git-Tag: v0.5.0~1 X-Git-Url: https://pd.if.org/git/?p=zpackage;a=commitdiff_plain;h=4c31e17bdc32b673dc12336c80b35c42ee51c6ca remove -O3 from sqlite3 compile options --- diff --git a/Makefile b/Makefile index c564012..2dc23ae 100644 --- a/Makefile +++ b/Makefile @@ -181,7 +181,7 @@ newdb.c: db.sql echo ", 0};" >> $@ sqlite/sqlite3.o: sqlite/sqlite3.c sqlite/config.h - $(CC) -O3 -Wall -std=c99 -Ilib -D_HAVE_SQLITE_CONFIG_H=1 -c -o $@ $< + $(CC) -Wall -std=c99 -Ilib -D_HAVE_SQLITE_CONFIG_H=1 -c -o $@ $< sqlite/extensions.o: sqlite/extensions.c $(CC) -O3 -Wall -std=c99 -I. -Isqlite -DSQLITE_CORE=1 -c -o $@ $<