commit: a653540d003abf94776b526f4c76730af4ca0048
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sun Mar 29 02:02:53 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sun Mar 29 17:48:21 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=a653540d
catalyst: Fix "3DNow!" capitalization
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/arch/x86.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/catalyst/arch/x86.py b/catalyst/arch/x86.py
index e00b2684..de9142f7 100644
--- a/catalyst/arch/x86.py
+++ b/catalyst/arch/x86.py
@@ -95,21 +95,21 @@ class arch_k6(generic_x86):
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx"]}
class arch_k6_2(generic_x86):
- "AMD K6-2 CPU with MMX and 3dNOW! support"
+ "AMD K6-2 CPU with MMX and 3DNow! support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=k6-2 -pipe"
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
class arch_athlon(generic_x86):
- "AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and SSE prefetch
support"
+ "AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and SSE prefetch
support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon -pipe"
self.settings["HOSTUSEEXPAND"]={"CPU_FLAGS_X86":["mmx","3dnow"]}
class arch_athlon_xp(generic_x86):
- "improved AMD Athlon CPU with MMX, 3dNOW!, enhanced 3dNOW! and full SSE
support"
+ "improved AMD Athlon CPU with MMX, 3DNow!, Enhanced 3DNow! and full SSE
support"
def __init__(self,myspec):
generic_x86.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=athlon-xp -pipe"