From e6c399c85c0dfe21e6d31885408a1a14488ed417 Mon Sep 17 00:00:00 2001 From: Nathan Wagner Date: Sat, 24 Nov 2018 01:25:45 +0000 Subject: [PATCH] compile sqlite with -O3 --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 \ -- 2.40.0