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.

19 lines
459 B

  1. if [ "$ROCKCFG_X86_OPT" != "generic" ] ; then
  2. var_append GCC3_WRAPPER_INSERT " " "-march=$ROCKCFG_X86_OPT"
  3. fi
  4. case "$ROCKCFG_X86_OPT" in
  5. i386|i486)
  6. var_append GCC2_WRAPPER_INSERT " " "-march=$ROCKCFG_X86_OPT" ;;
  7. pentium|pentium-mmx)
  8. var_append GCC2_WRAPPER_INSERT " " "-march=pentium" ;;
  9. pentium*)
  10. var_append GCC2_WRAPPER_INSERT " " "-march=pentiumpro" ;;
  11. k6*|athlon*)
  12. var_append GCC2_WRAPPER_INSERT " " "-march=k6" ;;
  13. esac