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 79BEC138334 for ; Sun, 3 Feb 2019 22:55:43 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 657D8E09BF; Sun, 3 Feb 2019 22:55:42 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 39EEAE09BF for ; Sun, 3 Feb 2019 22:55:42 +0000 (UTC) Received: from oystercatcher.gentoo.org (unknown [IPv6:2a01:4f8:202:4333:225:90ff:fed9:fc84]) (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 4E344335DA4 for ; Sun, 3 Feb 2019 22:55:40 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 8CB4A455 for ; Sun, 3 Feb 2019 22:55:38 +0000 (UTC) From: "Georgy Yakovlev" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Georgy Yakovlev" Message-ID: <1549231846.f6b343ff244032fbd937dc2994589d7ca47a1ce6.gyakovlev@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: dev-java/icedtea/ X-VCS-Repository: repo/gentoo X-VCS-Files: dev-java/icedtea/icedtea-3.10.0.ebuild X-VCS-Directories: dev-java/icedtea/ X-VCS-Committer: gyakovlev X-VCS-Committer-Name: Georgy Yakovlev X-VCS-Revision: f6b343ff244032fbd937dc2994589d7ca47a1ce6 X-VCS-Branch: master Date: Sun, 3 Feb 2019 22:55:38 +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: 45d9e093-1b8c-4987-9b6e-44756c177d76 X-Archives-Hash: 3f9884519a6d7bce91849f04200cec3d commit: f6b343ff244032fbd937dc2994589d7ca47a1ce6 Author: Georgy Yakovlev gentoo org> AuthorDate: Sun Feb 3 11:52:56 2019 +0000 Commit: Georgy Yakovlev gentoo org> CommitDate: Sun Feb 3 22:10:46 2019 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=f6b343ff dev-java/icedtea: re-add mincoming-stack-boundary=2 on x86 it was lost on bump Bug: https://bugs.gentoo.org/677138 Package-Manager: Portage-2.3.59, Repoman-2.3.12 Signed-off-by: Georgy Yakovlev gentoo.org> dev-java/icedtea/icedtea-3.10.0.ebuild | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/dev-java/icedtea/icedtea-3.10.0.ebuild b/dev-java/icedtea/icedtea-3.10.0.ebuild index c47e7ca17b5..9dafe7d9ab9 100644 --- a/dev-java/icedtea/icedtea-3.10.0.ebuild +++ b/dev-java/icedtea/icedtea-3.10.0.ebuild @@ -10,7 +10,7 @@ EAPI="6" SLOT="8" -inherit check-reqs gnome2-utils java-pkg-2 java-vm-2 multiprocessing pax-utils prefix versionator +inherit check-reqs flag-o-matic gnome2-utils java-pkg-2 java-vm-2 multiprocessing pax-utils prefix versionator ICEDTEA_VER=$(get_version_component_range 1-3) ICEDTEA_BRANCH=$(get_version_component_range 1-2) @@ -233,6 +233,9 @@ src_configure() { # In-tree JIT ports are available for amd64, arm, arm64, ppc64 (be&le), SPARC and x86. if { use amd64 || use arm || use arm64 || use ppc64 || use sparc || use x86; }; then hotspot_port="yes" + + # Work around stack alignment issue, bug #647954. + use x86 && append-flags -mincoming-stack-boundary=2 fi # Always use HotSpot as the primary VM if available. #389521 #368669 #357633 ...