diff options
author | Bryan Hundven <bryanhundven@gmail.com> | 2016-08-30 17:09:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-30 17:09:50 -0700 |
commit | a833c5596d75f95ca9bcfa99f55b165bfe38ab58 (patch) | |
tree | 040c10ea8e2e6cf7670ca8045c7c88a2995e5bcd | |
parent | 2b887e417a1fceba9229b5189a0e9cf0b547e5bc (diff) | |
parent | 31c8645b37e35b78484512012ecbcf275fe7ea25 (diff) | |
download | crosstool-ng-a833c5596d75f95ca9bcfa99f55b165bfe38ab58.tar.gz crosstool-ng-a833c5596d75f95ca9bcfa99f55b165bfe38ab58.tar.bz2 crosstool-ng-a833c5596d75f95ca9bcfa99f55b165bfe38ab58.zip |
Merge pull request #429 from pedronavf/patch-1
Update x86.sh
-rw-r--r-- | scripts/build/arch/x86.sh | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/scripts/build/arch/x86.sh b/scripts/build/arch/x86.sh index 56272ed4..2c8a2267 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 |