16 lines
No EOL
438 B
Text
16 lines
No EOL
438 B
Text
# Use compilation cache and color output
|
|
BUILDENV=(!distcc fakeroot color ccache check !sign)
|
|
|
|
# Use the lozop algorithm for compression
|
|
COMPRESSLZO"(lzop -q)"
|
|
PKGEXT=".pkg.tar.lzo"
|
|
SRCEXT=".src.tar.lzo"
|
|
|
|
# Use multiple threads for compiling
|
|
MAKEFLAGS="-j$(nproc)"
|
|
|
|
# Optimize builds for architecture
|
|
CFLAGS="-march=native -O2 -pipe -fstack-protector-strong -fno-plt"
|
|
CXXFLAGS="${CFLAGS}"
|
|
|
|
PACKAGER="Severin Kaderli <severin@kaderli.dev>" |