From: Raúl Porcel Date: Mon, 1 Nov 2010 11:26:12 +0000 (+0000) Subject: Add patch for Loongson support, patch by Zhang Le , bug... X-Git-Tag: CATALYST-2.0.10~3^2~58 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=a1bb91b416413071e6033a480439c6d73447704e;p=catalyst.git Add patch for Loongson support, patch by Zhang Le , bug #330241 --- diff --git a/modules/catalyst/arch/mips.py b/modules/catalyst/arch/mips.py index 7234b65a..8e5f1246 100644 --- a/modules/catalyst/arch/mips.py +++ b/modules/catalyst/arch/mips.py @@ -97,6 +97,34 @@ class arch_mipsel3_n32(generic_mipsel): self.settings["CHOST"]="mips64el-unknown-linux-gnu" self.settings["HOSTUSE"]=["n32"] +class arch_loongson2e(generic_mipsel): + "Builder class for all Loongson 2E [Little-endian]" + def __init__(self,myspec): + generic_mipsel.__init__(self,myspec) + self.settings["CFLAGS"]="-O2 -march=loongson2e -mabi=32 -pipe -mplt" + +class arch_loongson2e_n32(generic_mipsel): + "Builder class for all Loongson 2E [Little-endian N32]" + def __init__(self,myspec): + generic_mipsel.__init__(self,myspec) + self.settings["CFLAGS"]="-O2 -march=loongson2e -mabi=n32 -pipe -mplt" + self.settings["CHOST"]="mips64el-unknown-linux-gnu" + self.settings["HOSTUSE"]=["n32"] + +class arch_loongson2f(generic_mipsel): + "Builder class for all Loongson 2F [Little-endian]" + def __init__(self,myspec): + generic_mipsel.__init__(self,myspec) + self.settings["CFLAGS"]="-O3 -march=loongson2f -mabi=32 -pipe -mplt --Wa,-mfix-loongson2f-nop" + +class arch_loongson2f_n32(generic_mipsel): + "Builder class for all Loongson 2F [Little-endian N32]" + def __init__(self,myspec): + generic_mipsel.__init__(self,myspec) + self.settings["CFLAGS"]="-O3 -march=loongson2f -mabi=n32 -pipe -mplt -Wa,-mfix-loongson2f-nop" + self.settings["CHOST"]="mips64el-unknown-linux-gnu" + self.settings["HOSTUSE"]=["n32"] + class arch_mipsel4(generic_mipsel): "Builder class for all MIPS IV [Little-endian]" def __init__(self,myspec): @@ -186,7 +214,10 @@ _subarch_map = { "mipsel3_n32" : arch_mipsel3_n32, "mipsel4" : arch_mipsel4, "mipsel4_n32" : arch_mipsel4_n32, - "loongson" : arch_mipsel3, + "loongson2e" : arch_loongson2e, + "loongson2e_n32" : arch_loongson2e_n32, + "loongson2f" : arch_loongson2f, + "loongson2f_n32" : arch_loongson2f_n32, } _machine_map = ("mips","mips64")