From 0e59acfd8a9e5908ac4719a41b87debac371611b Mon Sep 17 00:00:00 2001 From: Alison Watson Date: Wed, 24 Jul 2019 20:07:51 -0400 Subject: [PATCH] makepkg: use -O3 instead of -O2 --- build-system/makepkg.conf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-system/makepkg.conf b/build-system/makepkg.conf index 57aeb1a..aa016e5 100644 --- a/build-system/makepkg.conf +++ b/build-system/makepkg.conf @@ -2,7 +2,7 @@ COMPRESSBZ2=(pbzip2 -c -f) COMPRESSGZ=(pigz -c -f -n) COMPRESSXZ=(xz -c -z - --threads=0) PKGEXT='.pkg.tar' -CFLAGS="-mtune=native -march=native -O2 -pipe -fstack-protector-strong -fno-plt -w -Wno-c++11-narrowing" +CFLAGS="-mtune=native -march=native -O3 -pipe -fstack-protector-strong -fno-plt -w -Wno-c++11-narrowing" CXXFLAGS="${CFLAGS}" MAKEFLAGS="-j12" PACKAGER="Alison Watson "