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.
|
|
|
if [ "$ROCKCFG_X86_OPT" != "generic" ] ; then
|
|
var_append GCC3_WRAPPER_INSERT " " "-march=$ROCKCFG_X86_OPT"
|
|
fi
|
|
|
|
case "$ROCKCFG_X86_OPT" in
|
|
i386|i486)
|
|
var_append GCC2_WRAPPER_INSERT " " "-march=$ROCKCFG_X86_OPT" ;;
|
|
|
|
pentium|pentium-mmx)
|
|
var_append GCC2_WRAPPER_INSERT " " "-march=pentium" ;;
|
|
|
|
pentium*)
|
|
var_append GCC2_WRAPPER_INSERT " " "-march=pentiumpro" ;;
|
|
|
|
k6*|athlon*)
|
|
var_append GCC2_WRAPPER_INSERT " " "-march=k6" ;;
|
|
esac
|
|
|