From: Nathan Wagner Date: Sat, 24 Nov 2018 01:25:45 +0000 (+0000) Subject: compile sqlite with -O3 X-Git-Tag: v0.2.16~4 X-Git-Url: https://pd.if.org/git/?p=zpackage;a=commitdiff_plain;h=e6c399c85c0dfe21e6d31885408a1a14488ed417 compile sqlite with -O3 --- diff --git a/Makefile b/Makefile index e845acc..6e31be4 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ ZPM:= ./zpm -P. zpm-$(ZPMVER)-1.zpm: programs rm -f $@ $(ZPM) newpackage -C zpm-$(ZPMVER)-1 - $(ZPM) add -u root -g root -f $@ -P /sbin zpm-$(ZPMVER)-1 $(sort $(PROGRAMS)) + $(ZPM) add -v -u root -g root -f $@ -P /sbin zpm-$(ZPMVER)-1 $(sort $(PROGRAMS)) tarball: zpm-$(ZPMVER)-1.tar.xz @@ -164,7 +164,7 @@ newdb.c: db.sql echo ", 0};" >> $@ sqlite/sqlite3.o: sqlite/sqlite3.c sqlite/config.h - $(CC) -Wall -std=c99 -Ilib -D_HAVE_SQLITE_CONFIG_H=1 -c -o $@ $< + $(CC) -O3 -Wall -std=c99 -Ilib -D_HAVE_SQLITE_CONFIG_H=1 -c -o $@ $< sqlite/shell.o: sqlite/shell.c sqlite/config.h $(CC) -Wall -std=c99 -Ilib \