commit: d03d4f49bef52ea4562876316d494cbcc6b2f7f3 Author: Ionen Wolkens <ionen <AT> gentoo <DOT> org> AuthorDate: Thu Feb 16 08:45:44 2023 +0000 Commit: Ionen Wolkens <ionen <AT> gentoo <DOT> org> CommitDate: Thu Feb 16 08:54:03 2023 +0000 URL: https://gitweb.gentoo.org/repo/gentoo.git/commit/?id=d03d4f49
games-strategy/endless-sky: hopefully fix tests without -flto Upstream defaults to -flto, but we yank it to let users set as wanted. Simplest seem to be to just let the libraries get used. Closes: https://bugs.gentoo.org/894702 Signed-off-by: Ionen Wolkens <ionen <AT> gentoo.org> games-strategy/endless-sky/endless-sky-0.9.16.1.ebuild | 1 + .../endless-sky/files/endless-sky-0.9.16.1-test-libs.patch | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/games-strategy/endless-sky/endless-sky-0.9.16.1.ebuild b/games-strategy/endless-sky/endless-sky-0.9.16.1.ebuild index c07e76bb4888..3d0b78c57dff 100644 --- a/games-strategy/endless-sky/endless-sky-0.9.16.1.ebuild +++ b/games-strategy/endless-sky/endless-sky-0.9.16.1.ebuild @@ -36,6 +36,7 @@ PATCHES=( "${FILESDIR}"/${PN}-0.9.14-no-games-path.patch "${FILESDIR}"/${PN}-0.9.14-dont-compress-man-page.patch "${FILESDIR}"/${PN}-0.9.16.1-respect-cflags.patch + "${FILESDIR}"/${PN}-0.9.16.1-test-libs.patch ) src_compile() { diff --git a/games-strategy/endless-sky/files/endless-sky-0.9.16.1-test-libs.patch b/games-strategy/endless-sky/files/endless-sky-0.9.16.1-test-libs.patch new file mode 100644 index 000000000000..31b27de1d569 --- /dev/null +++ b/games-strategy/endless-sky/files/endless-sky-0.9.16.1-test-libs.patch @@ -0,0 +1,10 @@ +Even if not actually used, ensure all symbols are available when linking +tests to handle cases where unused symbols were not optimized out. +https://bugs.gentoo.org/894702 +--- a/SConstruct ++++ b/SConstruct +@@ -172,4 +172,2 @@ + CPPPATH=(env.get('CPPPATH', []) + [pathjoin('tests', 'unit', 'include')]), +- # Do not link against the actual implementations of SDL, OpenGL, etc. +- LIBS=sys_libs, + # Pass the necessary link flags for a console program.
