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.
 
 
 
 
 
 

17 lines
457 B

if [ "$ROCKCFG_SPARC_OPT" != "generic" ] ; then
# Append options so the gcc -V option always comes first.
var_append GCC_WRAPPER_APPEND " " "-mcpu=$ROCKCFG_SPARC_OPT"
case "$ROCKCFG_SPARC_OPT" in
v7) tune=cypress ;;
v8) tune=supersparc ;;
v9) tune=ultrasparc ;;
esac
[ "$tune" ] && var_append GCC_WRAPPER_APPEND " " "-mtune=$tune"
if [ $ROCKCFG_SPARC_BITS == 64 ] ; then
var_append GCC_WRAPPER_APPEND " " "-Wa,-Av9a -mno-app-regs"
fi
fi