commit: 45a978390cbe85f90a0e5dda53eb9d48ab4067b7
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Mon Apr 13 04:03:08 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Tue Apr 14 18:29:25 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=45a97839
catalyst/arch: Delete mips cobalt configs
With the r5k configurations in place, these are redundant.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/arch/mips.py | 14 --------------
1 file changed, 14 deletions(-)
diff --git a/catalyst/arch/mips.py b/catalyst/arch/mips.py
index b1a4b5dc..83265450 100644
--- a/catalyst/arch/mips.py
+++ b/catalyst/arch/mips.py
@@ -413,23 +413,9 @@ class arch_loongson3a_multilib(generic_mips64el):
generic_mips64el.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -march=loongson3a -mplt
-pipe"
-class arch_cobalt(generic_mipsel):
- "Builder class for cobalt [Little-endian]"
- def __init__(self,myspec):
- generic_mipsel.__init__(self,myspec)
- self.settings["COMMON_FLAGS"]="-O2 -march=r5000 -mabi=32 -mplt
-pipe"
-
-class arch_cobalt_n32(generic_mips64el):
- "Builder class for cobalt [Little-endian N32]"
- def __init__(self,myspec):
- generic_mips64el.__init__(self,myspec)
- self.settings["COMMON_FLAGS"]="-O2 -march=r5000 -mabi=n32 -mplt
-pipe"
-
def register():
"Inform main catalyst program of the contents of this plugin."
return ({
- "cobalt" : arch_cobalt,
- "cobalt_n32" : arch_cobalt_n32,
"mips1" : arch_mips1,
"mips2" : arch_mips2,
"mips32" : arch_mips32,