From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) by finch.gentoo.org (Postfix) with ESMTP id 05E20138A1F for ; Fri, 18 Apr 2014 16:52:47 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 43078E0B39; Fri, 18 Apr 2014 16:52:31 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 533A4E0B0A for ; Fri, 18 Apr 2014 16:52:29 +0000 (UTC) Received: from spoonbill.gentoo.org (spoonbill.gentoo.org [81.93.255.5]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 609253403A3 for ; Fri, 18 Apr 2014 16:52:28 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 4B3CA18400 for ; Fri, 18 Apr 2014 16:52:26 +0000 (UTC) From: "Brian Dolbec" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Brian Dolbec" Message-ID: <1397839837.0ea0f4a8ff05687a824648031fb48aabea487bd1.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:3.0 commit in: catalyst/arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: catalyst/arch/arm64.py X-VCS-Directories: catalyst/arch/ X-VCS-Committer: dol-sen X-VCS-Committer-Name: Brian Dolbec X-VCS-Revision: 0ea0f4a8ff05687a824648031fb48aabea487bd1 X-VCS-Branch: 3.0 Date: Fri, 18 Apr 2014 16:52:26 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Archives-Salt: 9b69a46d-44e6-4f65-acba-9e7634d9ccdb X-Archives-Hash: 463ec06e66b7b6379a9238fc76a64001 commit: 0ea0f4a8ff05687a824648031fb48aabea487bd1 Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 22 04:38:43 2014 +0000 Commit: Brian Dolbec gmail 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", ))