Dotfiles
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

21 lines
387 B

10 years ago
# vim: ft=sh
# Packager Info
source "$DOTFILES/etc/user-info"
11 years ago
PACKAGER="$REALNAME <$EMAIL>"
10 years ago
# Optimizations
function fix_march {
echo $@ | sed 's/-march=[\w-]+ -mtune=\w+/-march=native/'
}
CFLAGS="`fix_march $CFLAGS`"
CXXFLAGS="`fix_march $CXXFLAGS`"
LDFLAGS="$LDFLAGS"
MAKEFLAGS="-j`grep "cpu cores" /proc/cpuinfo | cut -d: -f2`"
10 years ago
# Store stuff
source "$DOTFILES/etc/aur.conf"
11 years ago