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.
 
 
 
 
 
 

12 lines
290 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"
fi