Files
aur_builder/makepkg.conf
Balakrishnan Balasubramanian 1e047e2ba2 Add SKIP_NATIVE to skip building for native
* remove tail
* DEBUG_SHELL: pause before copying
2026-01-17 12:01:35 -05:00

17 lines
396 B
Plaintext

PACKAGER="Balakrishnan Balasubramanian <arch-pkger@balki.me>"
# Do not build debug packages
for index in "${!OPTIONS[@]}"; do
if [[ "${OPTIONS[$index]}" = *debug ]]; then
OPTIONS["$index"]="!debug"
fi
done
# Enables all extra features supported by host CPU
if [ "${SKIP_NATIVE-n}" = n ]; then
CFLAGS="$CFLAGS -march=native -mtune=native"
CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"
fi