mirror of
https://github.com/gentoo-mirror/gentoo.git
synced 2026-09-24 04:59:14 -07:00
app-emulation/wine: Update gcc 5.3 test case. #577306. Thanks to Bob Wya
Package-Manager: portage-2.2.26
This commit is contained in:
@@ -22,3 +22,16 @@ MD4Update (MD4_CTX *ctx, const unsigned char *buf)
|
||||
MD4Transform( ctx->buf, (unsigned int *)ctx->in);
|
||||
MD4Transform( ctx->buf, (unsigned int *)ctx->in);
|
||||
}
|
||||
|
||||
int
|
||||
main(void)
|
||||
{
|
||||
MD4_CTX ctx_test =
|
||||
{
|
||||
{ 0x67452301, 0xefcdab89, 0x98badcfe, 0x10325476 },
|
||||
{ 0, 0 }
|
||||
};
|
||||
unsigned char buf[64];
|
||||
|
||||
MD4Update(&ctx_test, (const unsigned char *) &buf);
|
||||
}
|
||||
|
||||
@@ -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."
|
||||
|
||||
@@ -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."
|
||||
|
||||
Reference in New Issue
Block a user