commit: e93b6722850c0dee941db30f6981968adcd3fd53
Author: Matt Turner <mattst88 <AT> gentoo <DOT> org>
AuthorDate: Sat Apr 11 07:10:56 2020 +0000
Commit: Matt Turner <mattst88 <AT> gentoo <DOT> org>
CommitDate: Sat Apr 11 07:10:56 2020 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=e93b6722
catalyst/arch: Drop hppa1.0
I don't think Linux ever ran on these. Wikipedia doesn't even know the
names of the chips. We have never built stages for 1.0 as far as I can
tell.
Signed-off-by: Matt Turner <mattst88 <AT> gentoo.org>
catalyst/arch/hppa.py | 8 --------
1 file changed, 8 deletions(-)
diff --git a/catalyst/arch/hppa.py b/catalyst/arch/hppa.py
index b3c5c931..ee1a835b 100644
--- a/catalyst/arch/hppa.py
+++ b/catalyst/arch/hppa.py
@@ -7,13 +7,6 @@ class generic_hppa(builder.generic):
builder.generic.__init__(self,myspec)
self.settings["COMMON_FLAGS"]="-O2 -pipe"
-class arch_hppa(generic_hppa):
- "Builder class for hppa systems"
- def __init__(self,myspec):
- generic_hppa.__init__(self,myspec)
- self.settings["COMMON_FLAGS"]+=" -march=1.0"
- self.settings["CHOST"]="hppa-unknown-linux-gnu"
-
class arch_hppa1_1(generic_hppa):
"Builder class for hppa 1.1 systems"
def __init__(self,myspec):
@@ -31,7 +24,6 @@ class arch_hppa2_0(generic_hppa):
def register():
"Inform main catalyst program of the contents of this plugin."
return ({
- "hppa": arch_hppa,
"hppa1.1": arch_hppa1_1,
"hppa2.0": arch_hppa2_0
}, ("parisc","parisc64","hppa","hppa64") )