From: Martin Mares Date: Tue, 14 Jun 2005 16:07:35 +0000 (+0000) Subject: athlon64 is not known before gcc-3.4. X-Git-Tag: holmes-import~769 X-Git-Url: http://mj.ucw.cz/gitweb/?a=commitdiff_plain;h=814a1c1610a9d96f23a9d0ba9dfa130f8bbb10ae;p=libucw.git athlon64 is not known before gcc-3.4. --- diff --git a/lib/autoconf.cfg b/lib/autoconf.cfg index 815583f9..4dcff1dd 100644 --- a/lib/autoconf.cfg +++ b/lib/autoconf.cfg @@ -62,7 +62,7 @@ Test("CPU_ARCH", "Checking for CPU architecture", sub { my $model = $pc{'model'} || 0; if ($vendor eq "AuthenticAMD") { if ($family >= 6) { - if ($model >= 31 && $gccver >= 3003) { $arch = "athlon64"; } + if ($model >= 31 && $gccver >= 3004) { $arch = "athlon64"; } elsif ($model >= 6 && $gccver >= 3003) { $arch = "athlon-xp"; } else { $arch = "athlon"; } }