summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorBryan Hundven <bryanhundven@gmail.com>2016-08-31 00:09:50 (GMT)
committerGitHub <noreply@github.com>2016-08-31 00:09:50 (GMT)
commita833c5596d75f95ca9bcfa99f55b165bfe38ab58 (patch)
tree040c10ea8e2e6cf7670ca8045c7c88a2995e5bcd /scripts
parent2b887e417a1fceba9229b5189a0e9cf0b547e5bc (diff)
parent31c8645b37e35b78484512012ecbcf275fe7ea25 (diff)
Merge pull request #429 from pedronavf/patch-1
Update x86.sh
Diffstat (limited to 'scripts')
-rw-r--r--scripts/build/arch/x86.sh4
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/build/arch/x86.sh b/scripts/build/arch/x86.sh
index 56272ed..2c8a226 100644
--- a/scripts/build/arch/x86.sh
+++ b/scripts/build/arch/x86.sh
@@ -15,7 +15,9 @@ CT_DoArchTupleValues() {
winchip*) CT_TARGET_ARCH=i486;;
pentium|pentium-mmx|c3*) CT_TARGET_ARCH=i586;;
pentiumpro|pentium*|athlon*) CT_TARGET_ARCH=i686;;
- prescott) CT_TARGET_ARCH=i686;;
+ core2|atom) CT_TARGET_ARCH=i686;;
+ prescott|nocona) CT_TARGET_ARCH=i686;;
+ k8*|opteron*) CT_TARGET_ARCH=i686;;
*) CT_TARGET_ARCH=i586;;
esac
fi