]> pd.if.org Git - zpackage/commitdiff
remove -O3 from sqlite3 compile options
authorNathan Wagner <nw@hydaspes.if.org>
Fri, 15 Feb 2019 18:34:18 +0000 (18:34 +0000)
committerNathan Wagner <nw@hydaspes.if.org>
Fri, 15 Feb 2019 18:34:18 +0000 (18:34 +0000)
Makefile

index c564012894b401b44be697f2d8adea0f52424a52..2dc23ae66c5205d4345dcf5996d0c8be3fe5af25 100644 (file)
--- 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 $@ $<