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 DBC3B1393E9 for ; Wed, 2 Apr 2014 20:09:28 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E6D71E0DCD; Wed, 2 Apr 2014 20:09:25 +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 62A5CE0DCD for ; Wed, 2 Apr 2014 20:09:25 +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 8A84333FDE9 for ; Wed, 2 Apr 2014 20:09:24 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id 4F9A6188F5 for ; Wed, 2 Apr 2014 20:09:23 +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: <1396469063.d6c58087a2f9622b75c7f38eb0ec890f9b565b50.dol-sen@gentoo> Subject: [gentoo-commits] proj/catalyst:master 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: d6c58087a2f9622b75c7f38eb0ec890f9b565b50 X-VCS-Branch: master Date: Wed, 2 Apr 2014 20:09:23 +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: 2a155e0d-3278-4666-8c67-d18fdd844d1b X-Archives-Hash: ab97ead1d4d0f754cf39929db72e6393 Message-ID: <20140402200923.HUjgwnfMGgeQ6UJM3r5kWTMsdOPwUwSW_cbdcRJnk4A@z> commit: d6c58087a2f9622b75c7f38eb0ec890f9b565b50 Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 22 04:38:43 2014 +0000 Commit: Brian Dolbec gmail com> CommitDate: Wed Apr 2 20:04:23 2014 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=d6c58087 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", ))