* [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/arch/
@ 2014-03-03 17:11 Brian Dolbec
0 siblings, 0 replies; 3+ messages in thread
From: Brian Dolbec @ 2014-03-03 17:11 UTC (permalink / raw
To: gentoo-commits
commit: ffcf247ee058f5cb13d6d8977553262a5402ff17
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 22 04:38:43 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Mon Mar 3 16:49:49 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=ffcf247e
Add arm64 support
Brian Dolbec: Modify patch for the new directory structure and apply.
Cleanup the imports.
---
catalyst/arch/arm64.py | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/catalyst/arch/arm64.py b/catalyst/arch/arm64.py
new file mode 100644
index 0000000..00e7527
--- /dev/null
+++ b/catalyst/arch/arm64.py
@@ -0,0 +1,15 @@
+
+from catalyst import builder
+
+class arch_arm64(builder.generic):
+ "builder class for arm64"
+ def __init__(self,myspec):
+ builder.generic.__init__(self,myspec)
+ self.settings["CHROOT"]="chroot"
+ self.settings["CFLAGS"]="-O2 -pipe"
+ self.settings["CFLAGS"]="-O2 -pipe"
+ self.settings["CHOST"]="aarch64-unknown-linux-gnu"
+
+def register():
+ "Inform main catalyst program of the contents of this plugin."
+ return ({ "arm64":arch_arm64 }, ("aarch64","arm64", ))
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/arch/
@ 2014-04-18 16:52 Brian Dolbec
0 siblings, 0 replies; 3+ messages in thread
From: Brian Dolbec @ 2014-04-18 16:52 UTC (permalink / raw
To: gentoo-commits
commit: 0ea0f4a8ff05687a824648031fb48aabea487bd1
Author: Mike Frysinger <vapier <AT> gentoo <DOT> org>
AuthorDate: Wed Jan 22 04:38:43 2014 +0000
Commit: Brian Dolbec <brian.dolbec <AT> gmail <DOT> com>
CommitDate: Fri Apr 18 16:50:37 2014 +0000
URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=0ea0f4a8
Add arm64 support
Brian Dolbec: Modify patch for the new directory structure and apply.
Cleanup the imports.
---
catalyst/arch/arm64.py | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/catalyst/arch/arm64.py b/catalyst/arch/arm64.py
new file mode 100644
index 0000000..00e7527
--- /dev/null
+++ b/catalyst/arch/arm64.py
@@ -0,0 +1,15 @@
+
+from catalyst import builder
+
+class arch_arm64(builder.generic):
+ "builder class for arm64"
+ def __init__(self,myspec):
+ builder.generic.__init__(self,myspec)
+ self.settings["CHROOT"]="chroot"
+ self.settings["CFLAGS"]="-O2 -pipe"
+ self.settings["CFLAGS"]="-O2 -pipe"
+ self.settings["CHOST"]="aarch64-unknown-linux-gnu"
+
+def register():
+ "Inform main catalyst program of the contents of this plugin."
+ return ({ "arm64":arch_arm64 }, ("aarch64","arm64", ))
^ permalink raw reply related [flat|nested] 3+ messages in thread
* [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/arch/
@ 2015-09-22 22:48 Anthony G. Basile
0 siblings, 0 replies; 3+ messages in thread
From: Anthony G. Basile @ 2015-09-22 22:48 UTC (permalink / raw
To: gentoo-commits
commit: 9645be27987df0f9cdb26e039bea9de49e9e5007
Author: Leno Hou <lenohou <AT> gmail <DOT> com>
AuthorDate: Tue Sep 22 22:34:26 2015 +0000
Commit: Anthony G. Basile <blueness <AT> gentoo <DOT> org>
CommitDate: Tue Sep 22 22:53:01 2015 +0000
URL: https://gitweb.gentoo.org/proj/catalyst.git/commit/?id=9645be27
Currently catalyst does not support ppc64le arch,
we add subarch power8 to support ppc64le and make stage files.
Signed-off-by: Leno Hou <lenohou <AT> gmail.com>
Signed-off-by: Anthony G. Basile <blueness <AT> gentoo.org>
catalyst/arch/powerpc.py | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/catalyst/arch/powerpc.py b/catalyst/arch/powerpc.py
index f903b38..8e0f540 100644
--- a/catalyst/arch/powerpc.py
+++ b/catalyst/arch/powerpc.py
@@ -108,6 +108,14 @@ class arch_power6(arch_ppc64):
self.settings["CFLAGS"]="-O2 -pipe -mcpu=power6 -mtune=power6"
self.settings["HOSTUSE"]=["altivec","ibm"]
+class arch_power8(arch_ppc64):
+ "builder class for power8 under ppc64le"
+ def __init__(self,myspec):
+ arch_ppc64.__init__(self,myspec)
+ self.settings["CFLAGS"]="-O2 -pipe -mcpu=power8 -mtune=power8 -mabi=elfv2"
+ self.settings["CHOST"]="powerpc64le-unknown-linux-gnu"
+ self.settings["HOSTUSE"]=["altivec","ibm"]
+
def register():
"Inform main catalyst program of the contents of this plugin."
return ({
@@ -122,6 +130,7 @@ def register():
"power4" : arch_power4,
"power5" : arch_power5,
"power6" : arch_power6,
+ "power8" : arch_power8,
"ppc" : arch_ppc,
"ppc64" : arch_ppc64
- }, ("ppc","ppc64","powerpc","powerpc64"))
+ }, ("ppc","ppc64","ppc64le","powerpc","powerpc64","powerpc64le"))
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2015-09-22 22:48 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-03 17:11 [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/arch/ Brian Dolbec
-- strict thread matches above, loose matches on Subject: below --
2014-04-18 16:52 Brian Dolbec
2015-09-22 22:48 Anthony G. Basile
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox