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 (2048 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 674EA15811D for ; Mon, 26 Jun 2023 10:12:05 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 51FD1E0878; Mon, 26 Jun 2023 10:12:04 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [IPv6:2001:470:ea4a:1:5054:ff:fec7:86e4]) (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 24B94E0878 for ; Mon, 26 Jun 2023 10:12:04 +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 40F1E33BE65 for ; Mon, 26 Jun 2023 10:12:03 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 9DA37AC5 for ; Mon, 26 Jun 2023 10:12:01 +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: <1687774209.56d9f95e7c64ac526c828494c3c57062eefe20fe.ionen@gentoo> Subject: [gentoo-commits] repo/gentoo:master commit in: app-emulation/dxvk/ X-VCS-Repository: repo/gentoo X-VCS-Files: app-emulation/dxvk/dxvk-1.10.3.ebuild app-emulation/dxvk/dxvk-2.0.ebuild app-emulation/dxvk/dxvk-2.1.ebuild app-emulation/dxvk/dxvk-2.2.ebuild app-emulation/dxvk/dxvk-9999.ebuild X-VCS-Directories: app-emulation/dxvk/ X-VCS-Committer: ionen X-VCS-Committer-Name: Ionen Wolkens X-VCS-Revision: 56d9f95e7c64ac526c828494c3c57062eefe20fe X-VCS-Branch: master Date: Mon, 26 Jun 2023 10:12:01 +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: 8850ac56-ed78-416e-a36f-2243c362ab88 X-Archives-Hash: e365502b2eb337db0913bfa96b656db9 commit: 56d9f95e7c64ac526c828494c3c57062eefe20fe Author: Ionen Wolkens gentoo org> AuthorDate: Mon Jun 26 09:50:31 2023 +0000 Commit: Ionen Wolkens gentoo org> CommitDate: Mon Jun 26 10:10:09 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=56d9f95e app-emulation/dxvk: update -mno-avx comment to match wine Unsure for the status of issues with dxvk, the old Tk-Glitch issue (who were building this with -march=native) is 404 given repos changed around and unsure what the reproducer is. But given seemingly bad code is being generated for recent Wine I think this is unsafe enough that should keep it for now. Signed-off-by: Ionen Wolkens gentoo.org> app-emulation/dxvk/dxvk-1.10.3.ebuild | 6 ++++-- app-emulation/dxvk/dxvk-2.0.ebuild | 6 ++++-- app-emulation/dxvk/dxvk-2.1.ebuild | 7 ++++--- app-emulation/dxvk/dxvk-2.2.ebuild | 7 ++++--- app-emulation/dxvk/dxvk-9999.ebuild | 7 ++++--- 5 files changed, 20 insertions(+), 13 deletions(-) diff --git a/app-emulation/dxvk/dxvk-1.10.3.ebuild b/app-emulation/dxvk/dxvk-1.10.3.ebuild index e9f3f4344b63..c11db845a715 100644 --- a/app-emulation/dxvk/dxvk-1.10.3.ebuild +++ b/app-emulation/dxvk/dxvk-1.10.3.ebuild @@ -66,8 +66,10 @@ src_prepare() { src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} - # AVX has a history of causing issues with this package, disable for safety - # https://github.com/Tk-Glitch/PKGBUILDS/issues/515 + # -mavx with mingw-gcc has a history of obscure issues and + # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` + # crashes with -march=skylake >=wine-8.10, similar issues with + # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then diff --git a/app-emulation/dxvk/dxvk-2.0.ebuild b/app-emulation/dxvk/dxvk-2.0.ebuild index f2b240b7f42a..51375fb11c10 100644 --- a/app-emulation/dxvk/dxvk-2.0.ebuild +++ b/app-emulation/dxvk/dxvk-2.0.ebuild @@ -82,8 +82,10 @@ src_prepare() { src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} - # AVX has a history of causing issues with this package, disable for safety - # https://github.com/Tk-Glitch/PKGBUILDS/issues/515 + # -mavx with mingw-gcc has a history of obscure issues and + # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` + # crashes with -march=skylake >=wine-8.10, similar issues with + # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then diff --git a/app-emulation/dxvk/dxvk-2.1.ebuild b/app-emulation/dxvk/dxvk-2.1.ebuild index af2054a54097..28608a67906c 100644 --- a/app-emulation/dxvk/dxvk-2.1.ebuild +++ b/app-emulation/dxvk/dxvk-2.1.ebuild @@ -90,9 +90,10 @@ src_prepare() { src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} - # AVX has a history of causing issues with this package, disable for safety - # https://bugs.winehq.org/show_bug.cgi?id=43516 - # https://bugs.winehq.org/show_bug.cgi?id=45289 + # -mavx with mingw-gcc has a history of obscure issues and + # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` + # crashes with -march=skylake >=wine-8.10, similar issues with + # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then diff --git a/app-emulation/dxvk/dxvk-2.2.ebuild b/app-emulation/dxvk/dxvk-2.2.ebuild index 377428505711..b2ad8ecef4f0 100644 --- a/app-emulation/dxvk/dxvk-2.2.ebuild +++ b/app-emulation/dxvk/dxvk-2.2.ebuild @@ -86,9 +86,10 @@ src_prepare() { src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} - # AVX has a history of causing issues with this package, disable for safety - # https://bugs.winehq.org/show_bug.cgi?id=43516 - # https://bugs.winehq.org/show_bug.cgi?id=45289 + # -mavx with mingw-gcc has a history of obscure issues and + # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` + # crashes with -march=skylake >=wine-8.10, similar issues with + # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then diff --git a/app-emulation/dxvk/dxvk-9999.ebuild b/app-emulation/dxvk/dxvk-9999.ebuild index b2469528ebc8..12656f42a335 100644 --- a/app-emulation/dxvk/dxvk-9999.ebuild +++ b/app-emulation/dxvk/dxvk-9999.ebuild @@ -86,9 +86,10 @@ src_prepare() { src_configure() { use crossdev-mingw || PATH=${BROOT}/usr/lib/mingw64-toolchain/bin:${PATH} - # AVX has a history of causing issues with this package, disable for safety - # https://bugs.winehq.org/show_bug.cgi?id=43516 - # https://bugs.winehq.org/show_bug.cgi?id=45289 + # -mavx with mingw-gcc has a history of obscure issues and + # disabling is seen as safer, e.g. `WINEARCH=win32 winecfg` + # crashes with -march=skylake >=wine-8.10, similar issues with + # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx if [[ ${CHOST} != *-mingw* ]]; then