diff options
author | psykose <alice@ayaya.dev> | 2022-10-12 17:12:57 +0000 |
---|---|---|
committer | psykose <alice@ayaya.dev> | 2022-10-12 19:15:02 +0200 |
commit | 82eda896cefe38d51c9752abe6c044f60323ec62 (patch) | |
tree | 4390be1d2c7316886a131ddec2d5bd7f13132c55 | |
parent | 0b8e8e1b95c1e204a138d45e74030b028cfaacfd (diff) |
community/foot: actually set O3
-rw-r--r-- | community/foot/APKBUILD | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/community/foot/APKBUILD b/community/foot/APKBUILD index 8ea1de5e7f6..45c0e7a3876 100644 --- a/community/foot/APKBUILD +++ b/community/foot/APKBUILD @@ -1,7 +1,7 @@ # Maintainer: Alex McGrath <amk@amk.ie> pkgname=foot pkgver=1.13.1 -pkgrel=0 +pkgrel=1 pkgdesc="Fast, lightweight and minimalistic Wayland terminal emulator" url="https://codeberg.org/dnkl/foot" license="MIT" @@ -37,7 +37,9 @@ options="!check" # ran during profiling builddir="$srcdir/foot" build() { - export CFLAGS="$CFLAGS -O3" # -O3 as the package is intended to use it + export CFLAGS="$CFLAGS -O3" # -O3 as the package is intended to use it + export CXXFLAGS="$CXXFLAGS -O3" + export CPPFLAGS="$CPPFLAGS -O3" abuild-meson \ -Db_pgo=generate \ |