From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 7CF69139085 for ; Sun, 5 Feb 2017 04:23:23 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id A8B74E0DEA; Sun, 5 Feb 2017 04:23:22 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 8484AE0DEB for ; Sun, 5 Feb 2017 04:23:22 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id 1BAA9341640 for ; Sun, 5 Feb 2017 04:23:21 +0000 (UTC) Received: from localhost.localdomain (localhost [127.0.0.1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id B942B3B8E for ; Sun, 5 Feb 2017 04:23:19 +0000 (UTC) From: "Mike Gilbert" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Mike Gilbert" Message-ID: <1486268376.1fb33c231cb6d5e1892bdc8fb8f5a201f420c24e.floppym@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: sys-boot/gnu-efi/ X-VCS-Repository: repo/gentoo X-VCS-Files: sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild X-VCS-Directories: sys-boot/gnu-efi/ X-VCS-Committer: floppym X-VCS-Committer-Name: Mike Gilbert X-VCS-Revision: 1fb33c231cb6d5e1892bdc8fb8f5a201f420c24e X-VCS-Branch: master Date: Sun, 5 Feb 2017 04:23:19 +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: d122e778-d742-460a-9704-e8f62c404046 X-Archives-Hash: d5f0495b41836abfac08498643b08bbf commit: 1fb33c231cb6d5e1892bdc8fb8f5a201f420c24e Author: Mike Gilbert gentoo org> AuthorDate: Sun Feb 5 04:19:36 2017 +0000 Commit: Mike Gilbert gentoo org> CommitDate: Sun Feb 5 04:19:36 2017 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=1fb33c23 sys-boot/gnu-efi: filter -mfpmath=sse Gentoo-Bug: https://bugs.gentoo.org/607992 Package-Manager: Portage-2.3.3_p47_p631453, Repoman-2.3.1_p40_p631453 sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild | 8 ++++++-- sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild | 8 ++++++-- 2 files changed, 12 insertions(+), 4 deletions(-) diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild index 741b506..96dae64 100644 --- a/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild +++ b/sys-boot/gnu-efi/gnu-efi-3.0.3.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2015 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=5 -inherit multilib toolchain-funcs +inherit flag-o-matic multilib toolchain-funcs DESCRIPTION="Library for build EFI Applications" HOMEPAGE="http://gnu-efi.sourceforge.net/" @@ -51,6 +51,10 @@ efimake() { src_compile() { tc-export BUILD_CC AR AS CC LD + + # https://bugs.gentoo.org/607992 + filter-mfpmath sse + if [[ ${CHOST} == x86_64* ]]; then use abi_x86_32 && CHOST=i686 ABI=x86 efimake use abi_x86_64 && efimake diff --git a/sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild b/sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild index 65873c6..205eaf0 100644 --- a/sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild +++ b/sys-boot/gnu-efi/gnu-efi-3.0.4.ebuild @@ -1,10 +1,10 @@ -# Copyright 1999-2016 Gentoo Foundation +# Copyright 1999-2017 Gentoo Foundation # Distributed under the terms of the GNU General Public License v2 # $Id$ EAPI=6 -inherit toolchain-funcs +inherit flag-o-matic toolchain-funcs DESCRIPTION="Library for build EFI Applications" HOMEPAGE="http://gnu-efi.sourceforge.net/" @@ -51,6 +51,10 @@ efimake() { src_compile() { tc-export BUILD_CC AR AS CC LD + + # https://bugs.gentoo.org/607992 + filter-mfpmath sse + if [[ ${CHOST} == x86_64* ]]; then use abi_x86_32 && CHOST=i686 ABI=x86 efimake use abi_x86_64 && efimake