summaryrefslogtreecommitdiff
path: root/config.guess
diff options
context:
space:
mode:
authorTorbjorn Granlund <tege@gmplib.org>2008-10-15 22:34:48 +0200
committerTorbjorn Granlund <tege@gmplib.org>2008-10-15 22:34:48 +0200
commit73463c5db72362704484c4649234e41928dbb072 (patch)
treea20f62e3c9d118e62e24d2cb42e4e21fef43e8fd /config.guess
parent22202ca531ed2549502aa20a1fa953d7aa9fcc95 (diff)
downloadgmp-73463c5db72362704484c4649234e41928dbb072.tar.gz
Support Intel Atom processor.
Diffstat (limited to 'config.guess')
-rwxr-xr-xconfig.guess3
1 files changed, 2 insertions, 1 deletions
diff --git a/config.guess b/config.guess
index c4087c6c3..da4f7ba9e 100755
--- a/config.guess
+++ b/config.guess
@@ -725,7 +725,8 @@ main ()
else if (model <= 9) modelstr = "pentiumm";
else if (model <= 12) modelstr = "pentium3";
else if (model <= 14) modelstr = "pentiumm";
- else modelstr = "core2";
+ else if (model <= 27) modelstr = "core2";
+ else modelstr = "atom";
break;
case 15:
modelstr = "pentium4";