aur_builder/makepkg.conf
Balakrishnan Balasubramanian cd2b151228 makepkg update
Add -march=native and -mtune=native
Remove debug builds
2025-03-04 13:55:54 -05:00

11 lines
272 B
Plaintext

PACKAGER="Balakrishnan Balasubramanian <arch-pkger@balki.me>"
for index in "${!OPTIONS[@]}"; do
if [[ "${OPTIONS[$index]}" = *debug ]]; then
OPTIONS["$index"]="!debug"
fi
done
CFLAGS="$CFLAGS -march=native -mtune=native"
CXXFLAGS="$CFLAGS -Wp,-D_GLIBCXX_ASSERTIONS"