mirror of the now-defunct rocklinux.org
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.
 
 
 
 
 
 

16 lines
398 B

if [ "$ROCKCFG_SPARC_OPT" != "generic" ] ; then
var_append GCC_WRAPPER_INSERT " " "-mcpu=$ROCKCFG_SPARC_OPT"
case "$ROCKCFG_SPARC_OPT" in
v7) tune=cypress ;;
v8) tune=supersparc ;;
v9) tune=ultrasparc ;;
esac
[ "$tune" ] && var_append GCC_WRAPPER_INSERT " " "-mtune=$tune"
if [ $ROCKCFG_SPARC_BITS == 64 ] ; then
var_append GCC_WRAPPER_INSERT " " "-Wa,-Av9a -mno-app-regs"
fi
fi