pkgbuild: remove -fno-plt

This commit is contained in:
Daniel Eklöf 2020-11-14 14:00:57 +01:00
parent fb32d339a7
commit a6fc5d64e8
No known key found for this signature in database
GPG key ID: 5BBD4992C116573F

View file

@ -16,8 +16,7 @@ pkgver() {
build() {
# makepkg uses -O2 by default, but we *really* want -O3
# -Wno-missing-profile since we're not exercising everything when doing PGO builds
# -fno-plt because performance (this is the default in makepkg anyway)
export CFLAGS+=" -O3 -Wno-missing-profile -fno-plt"
export CFLAGS+=" -O3 -Wno-missing-profile"
meson --prefix=/usr --buildtype=release --wrap-mode=nofallback -Db_lto=true ..