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.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 8B79A1581D8 for ; Mon, 18 Nov 2024 23:37:30 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id C770CE094B; Mon, 18 Nov 2024 23:37:29 +0000 (UTC) Received: from smtp.gentoo.org (woodpecker.gentoo.org [140.211.166.183]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id A75BAE0948 for ; Mon, 18 Nov 2024 23:37:29 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id B77E0340DD9 for ; Mon, 18 Nov 2024 23:37:28 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 0B7A1AED for ; Mon, 18 Nov 2024 23:37:27 +0000 (UTC) From: "Ionen Wolkens" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ionen Wolkens" Message-ID: <1731969358.e8d5c3a58d28178bfd7a074791c0d326ccff0b9a.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/wine-vanilla/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild app-emulation/wine-vanilla/wine-vanilla-9999.ebuild X-VCS-Directories: app-emulation/wine-vanilla/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: e8d5c3a58d28178bfd7a074791c0d326ccff0b9a X-VCS-Branch: master Date: Mon, 18 Nov 2024 23:37: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: 20e96346-b7ee-4d30-91c0-be9e092c939d X-Archives-Hash: 29e33eb973a6efa3659fc641eb99b286 commit: e8d5c3a58d28178bfd7a074791c0d326ccff0b9a Author: Ionen Wolkens gentoo org> AuthorDate: Mon Nov 18 22:35:19 2024 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Nov 18 22:35:58 2024 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=e8d5c3a5 app-emulation/wine-vanilla: pass -std=gnu17 for gcc15 for now Bug: https://bugs.gentoo.org/943849 Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild | 3 +++ app-emulation/wine-vanilla/wine-vanilla-9999.ebuild | 3 +++ 7 files changed, 21 insertions(+) diff --git a/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild b/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild index bb1d6d125649..dfb613e944ad 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-7.0.2.ebuild @@ -261,6 +261,9 @@ src_configure() { use custom-cflags || strip-flags # can break in obscure ways at runtime use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # temporary workaround for tc-ld-force-bfd not yet enforcing with mold # https://github.com/gentoo/gentoo/pull/28355 [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && diff --git a/app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild b/app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild index 3402577a7c2d..1f1319815791 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-8.0.2.ebuild @@ -255,6 +255,9 @@ src_configure() { use custom-cflags || strip-flags # can break in obscure ways at runtime use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # temporary workaround for tc-ld-force-bfd not yet enforcing with mold # https://github.com/gentoo/gentoo/pull/28355 [[ $($(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) == mold* ]] && diff --git a/app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild index c8cced499644..977ede6ca160 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9.0.ebuild @@ -281,6 +281,9 @@ src_configure() { filter-flags -Wl,--gc-sections # runtime issues (bug #931329) use custom-cflags || strip-flags # can break in obscure ways at runtime + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # wine uses linker tricks unlikely to work with non-bfd/lld (bug #867097) # (do self test until https://github.com/gentoo/gentoo/pull/28355) if [[ $(LC_ALL=C $(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) != @(LLD|GNU\ ld)* ]] diff --git a/app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild index 838210bfb98a..9c6db6a38766 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9.19.ebuild @@ -284,6 +284,9 @@ src_configure() { filter-flags -Wl,--gc-sections # runtime issues (bug #931329) use custom-cflags || strip-flags # can break in obscure ways at runtime + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # wine uses linker tricks unlikely to work with non-bfd/lld (bug #867097) # (do self test until https://github.com/gentoo/gentoo/pull/28355) if [[ $(LC_ALL=C $(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) != @(LLD|GNU\ ld)* ]] diff --git a/app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild index 6feb10a57429..28fa6e38456c 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9.20.ebuild @@ -284,6 +284,9 @@ src_configure() { filter-flags -Wl,--gc-sections # runtime issues (bug #931329) use custom-cflags || strip-flags # can break in obscure ways at runtime + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # wine uses linker tricks unlikely to work with non-bfd/lld (bug #867097) # (do self test until https://github.com/gentoo/gentoo/pull/28355) if [[ $(LC_ALL=C $(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) != @(LLD|GNU\ ld)* ]] diff --git a/app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild index 6feb10a57429..28fa6e38456c 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9.21.ebuild @@ -284,6 +284,9 @@ src_configure() { filter-flags -Wl,--gc-sections # runtime issues (bug #931329) use custom-cflags || strip-flags # can break in obscure ways at runtime + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # wine uses linker tricks unlikely to work with non-bfd/lld (bug #867097) # (do self test until https://github.com/gentoo/gentoo/pull/28355) if [[ $(LC_ALL=C $(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) != @(LLD|GNU\ ld)* ]] diff --git a/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild b/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild index 6feb10a57429..28fa6e38456c 100644 --- a/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild +++ b/app-emulation/wine-vanilla/wine-vanilla-9999.ebuild @@ -284,6 +284,9 @@ src_configure() { filter-flags -Wl,--gc-sections # runtime issues (bug #931329) use custom-cflags || strip-flags # can break in obscure ways at runtime + # broken with gcc-15's c23 default (TODO: try w/o occasionally, bug #943849) + append-cflags -std=gnu17 + # wine uses linker tricks unlikely to work with non-bfd/lld (bug #867097) # (do self test until https://github.com/gentoo/gentoo/pull/28355) if [[ $(LC_ALL=C $(tc-getCC) ${LDFLAGS} -Wl,--version 2>/dev/null) != @(LLD|GNU\ ld)* ]]