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 EAB8713873B for ; Sun, 2 Mar 2014 16:07:53 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 6A752E0A85; Sun, 2 Mar 2014 16:07:47 +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 CDEAAE0A85 for ; Sun, 2 Mar 2014 16:07:46 +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 F3A7133FA92 for ; Sun, 2 Mar 2014 16:07:45 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 89C95188EE for ; Sun, 2 Mar 2014 16:07:43 +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: <1393776427.32a003eaf9bd95e8f0189096214c4b3854b27c22.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:pending 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: 32a003eaf9bd95e8f0189096214c4b3854b27c22 X-VCS-Branch: pending Date: Sun, 2 Mar 2014 16:07:43 +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: 9bafd2b9-6036-4fbf-ab81-a9e2352a25e1 X-Archives-Hash: eae7f3ebd3821140db1f871f00d1a441 commit: 32a003eaf9bd95e8f0189096214c4b3854b27c22 Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 22 04:38:43 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Sun Mar 2 16:07:07 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=32a003ea Add arm64 support Brian Dolbec: Modify patch for the new directory structure and apply. --- catalyst/arch/arm64.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/catalyst/arch/arm64.py b/catalyst/arch/arm64.py new file mode 100644 index 0000000..f665e89 --- /dev/null +++ b/catalyst/arch/arm64.py @@ -0,0 +1,16 @@ + +import builder,os +from catalyst_support import * + +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", ))