diff options
author | Ionen Wolkens <ionen@gentoo.org> | 2024-05-20 22:23:55 -0400 |
---|---|---|
committer | Ionen Wolkens <ionen@gentoo.org> | 2024-05-20 22:58:15 -0400 |
commit | 0ee751a060fc66194a019a0fdd23bde99775cb01 (patch) | |
tree | edb189fc975d9ab104c4b9992ccd220af5dd9f06 /app-emulation/dxvk | |
parent | app-emulation/wine-proton: add workaround for gcc14 ICE w/ mingw (diff) | |
download | gentoo-0ee751a060fc66194a019a0fdd23bde99775cb01.tar.gz gentoo-0ee751a060fc66194a019a0fdd23bde99775cb01.tar.bz2 gentoo-0ee751a060fc66194a019a0fdd23bde99775cb01.zip |
app-emulation/dxvk: add workaround for gcc14 ICE w/ mingw
Bug: https://bugs.gentoo.org/932319
Signed-off-by: Ionen Wolkens <ionen@gentoo.org>
Diffstat (limited to 'app-emulation/dxvk')
-rw-r--r-- | app-emulation/dxvk/dxvk-1.10.3-r1.ebuild | 3 | ||||
-rw-r--r-- | app-emulation/dxvk/dxvk-2.3.1-r1.ebuild | 3 | ||||
-rw-r--r-- | app-emulation/dxvk/dxvk-9999.ebuild | 3 |
3 files changed, 9 insertions, 0 deletions
diff --git a/app-emulation/dxvk/dxvk-1.10.3-r1.ebuild b/app-emulation/dxvk/dxvk-1.10.3-r1.ebuild index 701ccb453a83..29d08dd1188a 100644 --- a/app-emulation/dxvk/dxvk-1.10.3-r1.ebuild +++ b/app-emulation/dxvk/dxvk-1.10.3-r1.ebuild @@ -79,6 +79,9 @@ src_configure() { # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx + # gcc14 -fno-omit-frame-pointer ICE workaround (bug #932319) + append-flags -fomit-frame-pointer + if [[ ${CHOST} != *-mingw* ]]; then if [[ ! -v MINGW_BYPASS ]]; then unset AR CC CXX RC STRIP diff --git a/app-emulation/dxvk/dxvk-2.3.1-r1.ebuild b/app-emulation/dxvk/dxvk-2.3.1-r1.ebuild index 640326b8a12d..eef73bd94529 100644 --- a/app-emulation/dxvk/dxvk-2.3.1-r1.ebuild +++ b/app-emulation/dxvk/dxvk-2.3.1-r1.ebuild @@ -107,6 +107,9 @@ src_configure() { # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx + # gcc14 -fno-omit-frame-pointer ICE workaround (bug #932319) + append-flags -fomit-frame-pointer + if [[ ${CHOST} != *-mingw* ]]; then if [[ ! -v MINGW_BYPASS ]]; then unset AR CC CXX RC STRIP diff --git a/app-emulation/dxvk/dxvk-9999.ebuild b/app-emulation/dxvk/dxvk-9999.ebuild index 9db73b208248..9309ae514030 100644 --- a/app-emulation/dxvk/dxvk-9999.ebuild +++ b/app-emulation/dxvk/dxvk-9999.ebuild @@ -107,6 +107,9 @@ src_configure() { # znver4: https://gcc.gnu.org/bugzilla/show_bug.cgi?id=110273 append-flags -mno-avx + # gcc14 -fno-omit-frame-pointer ICE workaround (bug #932319) + append-flags -fomit-frame-pointer + if [[ ${CHOST} != *-mingw* ]]; then if [[ ! -v MINGW_BYPASS ]]; then unset AR CC CXX RC STRIP |