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 B1F49138010 for ; Sat, 8 Sep 2012 13:48:59 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 2C46621C02A; Sat, 8 Sep 2012 13:48:41 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) by pigeon.gentoo.org (Postfix) with ESMTP id ECFEA21C02A for ; Sat, 8 Sep 2012 13:48:40 +0000 (UTC) Received: from hornbill.gentoo.org (hornbill.gentoo.org [94.100.119.163]) (using TLSv1 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 630E633D149 for ; Sat, 8 Sep 2012 13:48:40 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by hornbill.gentoo.org (Postfix) with ESMTP id 04949E543D for ; Sat, 8 Sep 2012 13:48:39 +0000 (UTC) From: "Jorge Manuel B. S. Vicetto" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Jorge Manuel B. S. Vicetto" Message-ID: <1347112077.98157408611ab90e0a0e8910e606075daa1b1fdb.jmbsvicetto@gentoo> Subject: [gentoo-commits] proj/catalyst:master commit in: arch/ X-VCS-Repository: proj/catalyst X-VCS-Files: arch/amd64.py X-VCS-Directories: arch/ X-VCS-Committer: jmbsvicetto X-VCS-Committer-Name: Jorge Manuel B. S. Vicetto X-VCS-Revision: 98157408611ab90e0a0e8910e606075daa1b1fdb X-VCS-Branch: master Date: Sat, 8 Sep 2012 13:48:39 +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: 9a834f1a-141a-417b-a5f4-e39ec2bb8753 X-Archives-Hash: be3b43d38459de07c78e5747dea9a572 commit: 98157408611ab90e0a0e8910e606075daa1b1fdb Author: Mike Frysinger gentoo org> AuthorDate: Sat Sep 8 00:03:15 2012 +0000 Commit: Jorge Manuel B. S. Vicetto gentoo org> CommitDate: Sat Sep 8 13:47:57 2012 +0000 URL: http://git.overlays.gentoo.org/gitweb/?p=proj/catalyst.git;a=commit;h=98157408 add x32 abi Signed-off-by: Mike Frysinger gentoo.org> --- arch/amd64.py | 11 ++++++++++- 1 files changed, 10 insertions(+), 1 deletions(-) diff --git a/arch/amd64.py b/arch/amd64.py index 1697483..4cd229c 100644 --- a/arch/amd64.py +++ b/arch/amd64.py @@ -56,6 +56,14 @@ class arch_amdfam10(generic_amd64): self.settings["CHOST"]="x86_64-pc-linux-gnu" self.settings["HOSTUSE"]=["mmx","sse","sse2","3dnow"] +class arch_x32(generic_amd64): + "builder class for generic x32 (Intel and AMD)" + def __init__(self,myspec): + generic_amd64.__init__(self,myspec) + self.settings["CFLAGS"]="-O2 -pipe" + self.settings["CHOST"]="x86_64-pc-linux-gnux32" + self.settings["HOSTUSE"]=["mmx","sse","sse2"] + def register(): "inform main catalyst program of the contents of this plugin" return ({ @@ -70,6 +78,7 @@ def register(): "opteron-sse3" : arch_k8_sse3, "athlon64-sse3" : arch_k8_sse3, "amdfam10" : arch_amdfam10, - "barcelona" : arch_amdfam10 + "barcelona" : arch_amdfam10, + "x32" : arch_x32, }, ("x86_64","amd64","nocona"))