comparison configure @ 9024:6dcba6346b88

support runtime cpudetect on non-x86 systems too
author alex
date Sun, 19 Jan 2003 16:42:25 +0000
parents b345f92422b4
children 44db2e9719db
comparison
equal deleted inserted replaced
9023:e40760677a83 9024:6dcba6346b88
578 echores "$pvendor ($pfamily:$pmodel:$pstepping)" 578 echores "$pvendor ($pfamily:$pmodel:$pstepping)"
579 579
580 echocheck "CPU type" 580 echocheck "CPU type"
581 echores "$pname" 581 echores "$pname"
582 582
583 # just leaving this here becouse the non-x86 optims
583 if test "$_runtime_cpudetection" = yes ; then 584 if test "$_runtime_cpudetection" = yes ; then
584 _mmx=yes 585 if x86; then
585 _3dnow=yes 586 _mmx=yes
586 _3dnowex=yes 587 _3dnow=yes
587 _mmx2=yes 588 _3dnowex=yes
588 _sse=yes 589 _mmx2=yes
589 _sse2=yes 590 _sse=yes
590 _mtrr=yes 591 _sse2=yes
592 _mtrr=yes
593 fi
591 _optimizing="Runtime CPU-Detection enabled" 594 _optimizing="Runtime CPU-Detection enabled"
592 fi 595 fi
593 596
594 fi 597 fi
595 598