forked from gentoo/gentoo
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dev-java/icedtea: Reintroduce stack alignment fix for x86
This is still not addressed upstream. Bug: https://bugs.gentoo.org/647954 Signed-off-by: James Le Cuirot <[email protected]> Package-Manager: Portage-2.3.51, Repoman-2.3.11
- Loading branch information
Showing
1 changed file
with
5 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,12 @@ | ||
# Copyright 1999-2018 Gentoo Foundation | ||
# Copyright 1999-2018 Gentoo Authors | ||
# Distributed under the terms of the GNU General Public License v2 | ||
|
||
# Build written by Andrew John Hughes ([email protected]) | ||
|
||
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) | ||
|
@@ -224,6 +224,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 ... | ||
|