1
0
mirror of https://github.com/bertptrs/vimconfig.git synced 2025-12-25 20:40:32 +01:00

Add makepkg configuration.

This commit is contained in:
Bert Peters
2016-05-31 09:43:17 +02:00
parent b311ed373b
commit 646dea919b

View File

@@ -0,0 +1,12 @@
# march=native and flto added
CFLAGS="-march=native -mtune=generic -O2 -pipe -fstack-protector-strong -flto"
CXXFLAGS="-march=native -mtune=generic -O2 -pipe -fstack-protector-strong -flto"
# Do a parallel build.
MAKEFLAGS="-j6"
# Enable optipng compression, for what its worth
OPTIONS=(strip docs !libtool !staticlibs emptydirs zipman purge optipng !upx !debug)
# Use parallel compression
COMPRESSXZ=(xz -c -z -T 0 -)