summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2012-08-29 03:49:40 +0000
committerJorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org>2012-08-29 03:49:40 +0000
commit4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b (patch)
tree546648b62e6d345aa8a32f242ddd99d1e6730797 /arch
parentLet's see if we can update the seed stage and fix bug 397505. (diff)
downloadcatalyst-4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b.tar.gz
catalyst-4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b.tar.bz2
catalyst-4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b.zip
Signed-off-by: Daniel Solano Gómez <gentoo@sattvik.com>
Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto@gentoo.org> Fixes 'HOSTUSER' typo for Pentium M Adds CHOST for Prescott
Diffstat (limited to 'arch')
-rw-r--r--arch/x86.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/x86.py b/arch/x86.py
index 324ed799..8bce84c2 100644
--- a/arch/x86.py
+++ b/arch/x86.py
@@ -82,7 +82,7 @@ class arch_pentium_m(generic_x86):
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["CFLAGS"]="-O2 -march=pentium-m -pipe"
- self.settings["HOSTUSER"]=["mmx","sse","sse2"]
+ self.settings["HOSTUSE"]=["mmx","sse","sse2"]
class arch_prescott(generic_x86):
"improved version of Intel Pentium 4 CPU with MMX, SSE, SSE2 and SSE3 support"
@@ -90,6 +90,7 @@ class arch_prescott(generic_x86):
generic_x86.__init__(self,myspec)
self.settings["CFLAGS"]="-O2 -march=prescott -pipe"
self.settings["HOSTUSE"]=["mmx","sse","sse2"]
+ self.settings["CHOST"]="i686-pc-linux-gnu"
class arch_k6(generic_x86):
"AMD K6 CPU with MMX support"