Added optimization to atkmm, gdk-pixbuf, gtk+3, gtkmm3, libdrm, libwebp, lzo, xkeyboard-config

This commit is contained in:
dslm4515
2021-09-16 14:22:35 -05:00
parent 144a73d0d6
commit 9f2655af1f
8 changed files with 87 additions and 26 deletions

View File

@ -12,6 +12,12 @@
# Optional: NONE
# LTO: Tested with LLVM
# If optimizing, use these flags
export CFLAGS="-march=native -mtune=native -pipe "
export CFLAGS+="-O3 -falign-functions=32 -ffat-lto-objects -flto=4 "
export CFLAGS+="-fno-math-errno -fno-semantic-interposition -fno-trapping-math "
export LDFLAGS="-flto=4 -Wl,-O2 -Wl,--as-needed "
./configure --prefix=/usr \
--enable-shared \
--disable-static \