1 --- a/cpuinfo.sh 2009-08-31 15:59:37.000000000 -0600
2 +++ b/cpuinfo.sh 2015-02-01 22:20:28.469910599 -0700
17 - if test "$pmodel" -ge 23; then
19 - elif test "$pmodel" -ge 15; then
20 + if test "$pmodel" -ge 15; then
22 elif test "$pmodel" -ge 13; then
28 -# Seems some variants of gcc accept 'core2' instead of 'nocona'.
29 -if test "$proc" = "core2"; then
30 - do_cc -march=$proc $_opt_mcpu=$proc || proc=nocona
33 if test "$proc" = "pentium4" || test "$proc" = "pentium3" || test "$proc" = "pentium2" || test "$proc" = "athlon"; then
34 do_cc -march=$proc $_opt_mcpu=$proc || proc=i686
37 do_cc -march=$proc $_opt_mcpu=$proc || proc=error
39 if test "$proc" = "error" ; then
40 - echo "Your $CC does not even support \"i386\" for '-march' and $_opt_mcpu."
43 elif test "$proc" = "i586-i686"; then