diff options
author | Eli Schwartz <eschwartz93@gmail.com> | 2024-03-14 00:52:10 -0400 |
---|---|---|
committer | Sam James <sam@gentoo.org> | 2024-03-14 06:05:30 +0000 |
commit | e27a8a83982e24d3f02d16e6ff92ca5fb475e571 (patch) | |
tree | d52f59bee4a8d8d22e79c90cd1e55a8ad742093a /games-emulation | |
parent | sci-electronics/fasthenry: update EAPI 7 -> 8 (diff) | |
download | gentoo-e27a8a83982e24d3f02d16e6ff92ca5fb475e571.tar.gz gentoo-e27a8a83982e24d3f02d16e6ff92ca5fb475e571.tar.bz2 gentoo-e27a8a83982e24d3f02d16e6ff92ca5fb475e571.zip |
games-emulation/hatari: backport fix for LTO
https://github.com/hatari/hatari/commit/adccd68b16eff815590c1ec993354ef8e752ecfd
Closes: https://bugs.gentoo.org/858704
Signed-off-by: Eli Schwartz <eschwartz93@gmail.com>
Signed-off-by: Sam James <sam@gentoo.org>
Diffstat (limited to 'games-emulation')
-rw-r--r-- | games-emulation/hatari/files/adccd68b16eff815590c1ec993354ef8e752ecfd.patch | 36 | ||||
-rw-r--r-- | games-emulation/hatari/hatari-2.4.1-r1.ebuild (renamed from games-emulation/hatari/hatari-2.4.1.ebuild) | 4 |
2 files changed, 39 insertions, 1 deletions
diff --git a/games-emulation/hatari/files/adccd68b16eff815590c1ec993354ef8e752ecfd.patch b/games-emulation/hatari/files/adccd68b16eff815590c1ec993354ef8e752ecfd.patch new file mode 100644 index 000000000000..d8623cb4d66b --- /dev/null +++ b/games-emulation/hatari/files/adccd68b16eff815590c1ec993354ef8e752ecfd.patch @@ -0,0 +1,36 @@ +From adccd68b16eff815590c1ec993354ef8e752ecfd Mon Sep 17 00:00:00 2001 +From: Thomas Huth <huth@tuxfamily.org> +Date: Thu, 21 Dec 2023 14:33:19 +0100 +Subject: [PATCH] Fix compiler warning that occurs with link-time optimization + +With LTO enable, the build fails with: + + [100%] Linking C executable hatari + .../src/cpu/savestate.h:281:14: error: type of 'savestate_fname' does not + match original declaration [-Werror=lto-type-mismatch] + 281 | extern TCHAR savestate_fname[MAX_DPATH]; + | ^ + .../src/cpu/custom.c:40:8: note: + 'savestate_fname' was previously declared here + 40 | TCHAR *savestate_fname; + | ^ + lto1: all warnings being treated as errors + +Declare the array according to the definition in the header file to fix it. +--- + src/cpu/custom.c | 2 +- + 1 file changed, 1 insertion(+), 1 deletion(-) + +diff --git a/src/cpu/custom.c b/src/cpu/custom.c +index 15971ceff..aff0c0253 100644 +--- a/src/cpu/custom.c ++++ b/src/cpu/custom.c +@@ -37,7 +37,7 @@ extern struct regstruct mmu_backup_regs; + evt_t currcycle; + /* declared in savestate.h */ + int savestate_state = 0; +-TCHAR *savestate_fname; ++TCHAR savestate_fname[MAX_DPATH]; + /* declared in custom.h */ + uae_u32 hsync_counter = 0, vsync_counter = 0; + #endif diff --git a/games-emulation/hatari/hatari-2.4.1.ebuild b/games-emulation/hatari/hatari-2.4.1-r1.ebuild index 34e97a9d20bf..c2bc4be39b99 100644 --- a/games-emulation/hatari/hatari-2.4.1.ebuild +++ b/games-emulation/hatari/hatari-2.4.1-r1.ebuild @@ -1,4 +1,4 @@ -# Copyright 1999-2023 Gentoo Authors +# Copyright 1999-2024 Gentoo Authors # Distributed under the terms of the GNU General Public License v2 EAPI=8 @@ -43,6 +43,8 @@ BDEPEND="${PYTHON_DEPS}" PATCHES=( "${FILESDIR}"/${PN}-2.3.1-caps5-include-path.patch "${FILESDIR}"/${PN}-2.3.1-cmake-include-checksym.patch + # backport upstream patch for -Werror=lto-type-mismatch + "${FILESDIR}"/adccd68b16eff815590c1ec993354ef8e752ecfd.patch ) DOCS=( |