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.
 
 
 
 
 
 

20 lines
338 B

# vim: ft=sh
# Packager Info
source "$DOTFILES/user-info"
PACKAGER="$REALNAME <$EMAIL>"
# Optimizations
function fix_march {
echo $@ | sed 's/-march=[\w-]+ -mtune=\w+/-march=native/'
}
CFLAGS="`fix_march $CFLAGS`"
CXXFLAGS="`fix_march $CXXFLAGS`"
LDFLAGS="$LDFLAGS"
MAKEFLAGS="-j4"
# Store stuff
source "$DOTFILES/etc/aur.conf"