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 4CB0F138247 for ; Wed, 22 Jan 2014 04:38:46 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 9C1F1E0D3A; Wed, 22 Jan 2014 04:38:43 +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 9EAF8E0D3D for ; Wed, 22 Jan 2014 04:38:42 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by smtp.gentoo.org (Postfix) with ESMTP id 6CB7A33F9EA for ; Wed, 22 Jan 2014 04:38:41 +0000 (UTC) From: Mike Frysinger To: gentoo-catalyst@lists.gentoo.org Subject: [gentoo-catalyst] [PATCH] add arm64 support Date: Tue, 21 Jan 2014 23:38:43 -0500 Message-Id: <1390365523-23578-1-git-send-email-vapier@gentoo.org> X-Mailer: git-send-email 1.8.4.3 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: a0d021d6-272d-4b5e-aa4b-b7a72060d3b5 X-Archives-Hash: 391ea7d3ccdabeca8bfd3b38d87c483e --- arch/arm64.py | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100644 arch/arm64.py diff --git a/arch/arm64.py b/arch/arm64.py new file mode 100644 index 0000000..f665e89 --- /dev/null +++ b/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", )) -- 1.8.4.3