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 95FA213873B for ; Sun, 2 Mar 2014 23:01:25 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id E4D13E0B92; Sun, 2 Mar 2014 23:01:16 +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 5D740E0A90 for ; Sun, 2 Mar 2014 23:01:16 +0000 (UTC) Received: from big_daddy.dol-sen.ca (S010600222de111ff.vc.shawcable.net [96.49.5.156]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) (Authenticated sender: dolsen) by smtp.gentoo.org (Postfix) with ESMTPSA id 6CC6333F957 for ; Sun, 2 Mar 2014 23:01:15 +0000 (UTC) From: Brian Dolbec To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH 5/5] Add arm64 support Date: Sun, 2 Mar 2014 15:01:02 -0800 Message-Id: <1393801262-13820-5-git-send-email-dolsen@gentoo.org> X-Mailer: git-send-email 1.8.5.3 In-Reply-To: <1393801262-13820-2-git-send-email-dolsen@gentoo.org> References: <1393801262-13820-2-git-send-email-dolsen@gentoo.org> Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-catalyst@lists.gentoo.org Reply-to: gentoo-catalyst@lists.gentoo.org X-Archives-Salt: 8f7ed1c2-d9be-4884-a211-90c8e543e84b X-Archives-Hash: 1fa93ff7055c5d6285d1ec049a5157fe From: Mike Frysinger Brian Dolbec: Modify patch for the new directory structure and apply. Cleanup the imports. dgdg --- catalyst/arch/arm64.py | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 catalyst/arch/arm64.py 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", )) -- 1.8.5.3