Gentoo Archives: gentoo-commits

From: Matt Turner <mattst88@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] proj/catalyst:master commit in: catalyst/arch/
Date: Sun, 29 Mar 2020 17:48:51
Message-Id: 1585504101.a653540d003abf94776b526f4c76730af4ca0048.mattst88@gentoo
1 commit: a653540d003abf94776b526f4c76730af4ca0048
2 Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
3 AuthorDate: Sun Mar 29 02:02:53 2020 +0000
4 Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
5 CommitDate: Sun Mar 29 17:48:21 2020 +0000
6 URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a653540d
7
8 catalyst: Fix "3DNow!" capitalization
9
10 Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
11
12 catalyst/arch/x86.py | 6 +++---
13 1 file changed, 3 insertions(+), 3 deletions(-)
14
15 diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
16 index e00b2684..de9142f7 100644
17 --- a/catalyst/arch/x86.py
18 +++ b/catalyst/arch/x86.py
19 @@ -95,21 +95,21 @@ class arch_k6(generic_x86):
20 self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx"]}
21
22 class arch_k6_2(generic_x86):
23 - "AMD K6-2 CPU with MMX and 3dNOW! support"
24 + "AMD K6-2 CPU with MMX and 3DNow! support"
25 def __init__(self,myspec):
26 generic_x86.__init__(self,myspec)
27 self.settings["COMMON_FLAGS"]="-O2 -march=k6-2 -pipe"
28 self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
29
30 class arch_athlon(generic_x86):
31 - "AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch support"
32 + "AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and SSE prefetch support"
33 def __init__(self,myspec):
34 generic_x86.__init__(self,myspec)
35 self.settings["COMMON_FLAGS"]="-O2 -march=athlon -pipe"
36 self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
37
38 class arch_athlon_xp(generic_x86):
39 - "improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE support"
40 + "improved AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and full SSE support"
41 def __init__(self,myspec):
42 generic_x86.__init__(self,myspec)
43 self.settings["COMMON_FLAGS"]="-O2 -march=athlon-xp -pipe"