scripts/build-system/makepkg.conf

13 lines
376 B
Plaintext
Raw Normal View History

2019-07-20 19:44:35 -07:00
CFLAGS="-mtune=native -march=native -O2 -pipe -fstack-protector-strong -fno-plt -w -Wno-c++11-narrowing"
COMPRESSBZ2=(pbzip2 -c -f)
COMPRESSGZ=(pigz -c -f -n)
COMPRESSXZ=(xz -c -z - --threads=0)
2019-05-01 08:48:37 -07:00
CXXFLAGS="${CFLAGS}"
MAKEFLAGS="-j12"
PACKAGER="Alison Watson <marrub@greyserv.net>"
PKGDEST="$HOME/bin/packages"
PKGEXT='.pkg.tar'
SRCDEST="$HOME/bin/sources"
2019-07-20 19:44:35 -07:00
CC=clang
CXX=clang++