at-spi2-atk: added optimizations

This commit is contained in:
dslm4515
2021-09-01 17:47:06 -05:00
parent 5fddf6b73f
commit d7d6ce9f2c

View File

@ -11,6 +11,12 @@
# Recommended: NONE
# Optional: NONE
# if optimizing with GCC:
export CFLAGS="-march=native -pipe "
export CFLAGS+="-O3 -Os -fdata-sections -ffat-lto-objects "
export CFLAGS+="-ffunction-sections -flto=4 -fno-semantic-interposition "
export LDFLAGS="-flto=4 -Wl,-O2 -Wl,--as-needed "
mkdir build &&
cd build &&