From e08eca66f56c895a137a1a7e6cf554d50084c925 Mon Sep 17 00:00:00 2001 From: NP-Hardass Date: Mon, 14 Mar 2016 02:35:39 -0400 Subject: app-emulation/wine: Update gcc 5.3 test case. #577306. Thanks to Bob Wya Package-Manager: portage-2.2.26 --- app-emulation/wine/wine-9999.ebuild | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) (limited to 'app-emulation/wine/wine-9999.ebuild') diff --git a/app-emulation/wine/wine-9999.ebuild b/app-emulation/wine/wine-9999.ebuild index b29387c9c02d..96af59e1aefe 100644 --- a/app-emulation/wine/wine-9999.ebuild +++ b/app-emulation/wine/wine-9999.ebuild @@ -176,9 +176,8 @@ wine_build_environment_check() { # bug #574044 if use abi_x86_64 && [[ $(gcc-major-version) = 5 && $(gcc-minor-version) = 3 ]]; then einfo "Checking for gcc-5-3 stack realignment compiler bug ..." - $(tc-getCC) -O2 "${FILESDIR}"/pr69140.c -o "${T}"/pr69140 || die - # Run in subshell to prevent "Aborted" message - if ! ( "${T}"/69140 || false ) >/dev/null 2>&1; then + # Compile in subshell to prevent "Aborted" message + if ! ( $(tc-getCC) -O2 -mincoming-stack-boundary=3 "${FILESDIR}"/pr69140.c -o "${T}"/pr69140 || false ) >/dev/null 2>&1; then eerror "Wine cannot be built with this version of gcc-5.3" eerror "due to compiler bugs; please re-emerge the latest gcc-5.3.x ebuild," eerror "or use gcc-config to select a different compiler version." -- cgit v1.2.3-65-gdbad