From 4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b Mon Sep 17 00:00:00 2001 From: "Jorge Manuel B. S. Vicetto (jmbsvicetto)" Date: Wed, 29 Aug 2012 03:49:40 +0000 Subject: [PATCH] =?utf8?q?Signed-off-by:=20Daniel=20Solano=20G=C3=B3mez=20?= =?utf8?q?=20Signed-off-by:=20Jorge=20Manuel=20B.=20S.?= =?utf8?q?=20Vicetto=20(jmbsvicetto)=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=utf8 Content-Transfer-Encoding: 8bit Fixes 'HOSTUSER' typo for Pentium M Adds CHOST for Prescott --- arch/x86.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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" -- 2.26.2