# HG changeset patch # User zuxy # Date 1263546623 0 # Node ID a70cdb4450f5ecacd34be1a12fbb8a573c957e57 # Parent 1032ff2e83f1b809f730324908b326b6a298a3ed Set HAVE_FAST_CMOV to 0 for NetBurst based x86-64 processors, e.g. Prescott. diff -r 1032ff2e83f1 -r a70cdb4450f5 configure --- a/configure Fri Jan 15 08:51:51 2010 +0000 +++ b/configure Fri Jan 15 09:10:23 2010 +0000 @@ -2024,7 +2024,6 @@ else cpuopt=-mcpu fi - test $_fast_cmov = "auto" && _fast_cmov=yes if test "$_runtime_cpudetection" = no ; then case "$pvendor" in AuthenticAMD) @@ -2036,6 +2035,7 @@ # 64-bit prescotts exist, but as far as GCC is concerned they # have the same capabilities as a nocona. proc=nocona + test $_fast_cmov = "auto" && _fast_cmov=no ;; esac ;; @@ -2089,6 +2089,7 @@ fi _optimizing="" + test $_fast_cmov = "auto" && _fast_cmov=yes echores "$proc" ;;