Gentoo Archives: gentoo-commits

From: "Jorge Manuel B. S. Vicetto" <jmbsvicetto@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: arch/
Date: Wed, 29 Aug 2012 03:51:25
Message-Id: 1346212180.4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b.jmbsvicetto@gentoo
1 commit: 4df7c7f8cbc46c62bbb0b6ecc7144e10509fb35b
2 Author: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo <DOT> org>
3 AuthorDate: Wed Aug 29 03:49:40 2012 +0000
4 Commit: Jorge Manuel B. S. Vicetto <jmbsvicetto <AT> gentoo <DOT> org>
5 CommitDate: Wed Aug 29 03:49:40 2012 +0000
6 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=4df7c7f8
7
8 Signed-off-by: Daniel Solano Gómez <gentoo <AT> sattvik.com>
9 Signed-off-by: Jorge Manuel B. S. Vicetto (jmbsvicetto) <jmbsvicetto <AT> gentoo.org>
10
11 Fixes 'HOSTUSER' typo for Pentium M
12 Adds CHOST for Prescott
13
14 ---
15 arch/x86.py | 3 ++-
16 1 files changed, 2 insertions(+), 1 deletions(-)
17
18 diff --git a/arch/x86.py b/arch/x86.py
19 index 324ed79..8bce84c 100644
20 --- a/arch/x86.py
21 +++ b/arch/x86.py
22 @@ -82,7 +82,7 @@ class arch_pentium_m(generic_x86):
23 def __init__(self,myspec):
24 generic_x86.__init__(self,myspec)
25 self.settings["CFLAGS"]="-O2 -march=pentium-m -pipe"
26 - self.settings["HOSTUSER"]=["mmx","sse","sse2"]
27 + self.settings["HOSTUSE"]=["mmx","sse","sse2"]
28
29 class arch_prescott(generic_x86):
30 "improved version of Intel Pentium 4 CPU with MMX, SSE, SSE2 and SSE3 support"
31 @@ -90,6 +90,7 @@ class arch_prescott(generic_x86):
32 generic_x86.__init__(self,myspec)
33 self.settings["CFLAGS"]="-O2 -march=prescott -pipe"
34 self.settings["HOSTUSE"]=["mmx","sse","sse2"]
35 + self.settings["CHOST"]="i686-pc-linux-gnu"
36
37 class arch_k6(generic_x86):
38 "AMD K6 CPU with MMX support"