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 4003713873B for ; Mon, 3 Mar 2014 17:11:22 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 086B6E09A4; Mon, 3 Mar 2014 17:11:17 +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 93C4FE09A4 for ; Mon, 3 Mar 2014 17:11:16 +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 5E05033FA92 for ; Mon, 3 Mar 2014 17:11:15 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by spoonbill.gentoo.org (Postfix) with ESMTP id ED414183B3 for ; Mon, 3 Mar 2014 17:11:13 +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: <1393865389.ffcf247ee058f5cb13d6d8977553262a5402ff17.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: ffcf247ee058f5cb13d6d8977553262a5402ff17 X-VCS-Branch: 3.0 Date: Mon, 3 Mar 2014 17:11:13 +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: 9b09cd33-a74f-497a-a20c-b74c5839516f X-Archives-Hash: 4ff554abf6f170a7e3849f35fafe1238 commit: ffcf247ee058f5cb13d6d8977553262a5402ff17 Author: Mike Frysinger gentoo org> AuthorDate: Wed Jan 22 04:38:43 2014 +0000 Commit: Brian Dolbec gmail 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", ))