]> mj.ucw.cz Git - libucw.git/commitdiff
athlon64 is not known before gcc-3.4.
authorMartin Mares <mj@ucw.cz>
Tue, 14 Jun 2005 16:07:35 +0000 (16:07 +0000)
committerMartin Mares <mj@ucw.cz>
Tue, 14 Jun 2005 16:07:35 +0000 (16:07 +0000)
lib/autoconf.cfg

index 815583f9dbfea9789355ae9df011f2eff49294aa..4dcff1dd499515c92baa8e3aa0f746c441f63d16 100644 (file)
@@ -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"; }
                                }