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 E36FE138334 for ; Sun, 14 Apr 2019 21:13:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 150F6E08CD; Sun, 14 Apr 2019 21:13:30 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id E505AE08CD for ; Sun, 14 Apr 2019 21:13:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id ACA5B341114 for ; Sun, 14 Apr 2019 21:13:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 5BE2D326 for ; Sun, 14 Apr 2019 21:13:27 +0000 (UTC) From: "Anthony G. Basile" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Anthony G. Basile" Message-ID: <1555276398.60a1a12bb194551d225f12a18eb099e3aeabea4d.blueness@gentoo> Subject: [gentoo-commits] proj/musl:master commit in: sys-devel/gcc/ X-VCS-Repository: proj/musl X-VCS-Files: sys-devel/gcc/gcc-8.2.0-r6.ebuild sys-devel/gcc/gcc-8.3.0.ebuild X-VCS-Directories: sys-devel/gcc/ X-VCS-Committer: blueness X-VCS-Committer-Name: Anthony G. Basile X-VCS-Revision: 60a1a12bb194551d225f12a18eb099e3aeabea4d X-VCS-Branch: master Date: Sun, 14 Apr 2019 21:13:27 +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-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: f763f5e4-e24f-4932-ac7c-f07734ae2b9a X-Archives-Hash: 1915d424751545e93dff533e4d9a4855 commit: 60a1a12bb194551d225f12a18eb099e3aeabea4d Author: Anthony G. Basile gentoo org> AuthorDate: Sun Apr 14 21:13:18 2019 +0000 Commit: Anthony G. Basile gentoo org> CommitDate: Sun Apr 14 21:13:18 2019 +0000 URL: https://gitweb.gentoo.org/proj/musl.git/commit/?id=60a1a12b sys-devel/gcc: backport gcc-pure64.patch to gcc-8.2.0 Signed-off-by: Anthony G. Basile gentoo.org> Package-Manager: Portage-2.3.62, Repoman-2.3.11 sys-devel/gcc/gcc-8.2.0-r6.ebuild | 3 +++ sys-devel/gcc/gcc-8.3.0.ebuild | 3 +++ 2 files changed, 6 insertions(+) diff --git a/sys-devel/gcc/gcc-8.2.0-r6.ebuild b/sys-devel/gcc/gcc-8.2.0-r6.ebuild index 9d37041..3b0093a 100644 --- a/sys-devel/gcc/gcc-8.2.0-r6.ebuild +++ b/sys-devel/gcc/gcc-8.2.0-r6.ebuild @@ -25,5 +25,8 @@ src_prepare() { if use elibc_musl || [[ ${CATEGORY} = cross-*-musl* ]]; then epatch "${FILESDIR}"/6.3.0/cpu_indicator.patch epatch "${FILESDIR}"/7.1.0/posix_memalign.patch + case $(tc-arch) in + amd64|arm64) epatch "${FILESDIR}"/8.3.0/gcc-pure64.patch ;; + esac fi } diff --git a/sys-devel/gcc/gcc-8.3.0.ebuild b/sys-devel/gcc/gcc-8.3.0.ebuild index 269083e..33f446c 100644 --- a/sys-devel/gcc/gcc-8.3.0.ebuild +++ b/sys-devel/gcc/gcc-8.3.0.ebuild @@ -24,5 +24,8 @@ src_prepare() { if use elibc_musl || [[ ${CATEGORY} = cross-*-musl* ]]; then epatch "${FILESDIR}"/6.3.0/cpu_indicator.patch epatch "${FILESDIR}"/7.1.0/posix_memalign.patch + case $(tc-arch) in + amd64|arm64) epatch "${FILESDIR}"/8.3.0/gcc-pure64.patch ;; + esac fi }