Date: Mon, 7 Nov 2022 20:27:18 GMT From: Jan Beich <jbeich@FreeBSD.org> To: ports-committers@FreeBSD.org, dev-commits-ports-all@FreeBSD.org, dev-commits-ports-main@FreeBSD.org Subject: git: 64c2cc440f58 - main - emulators/yuzu: avoid gcc* dep via shlib_required after 4021ff7b85d9 Message-ID: <202211072027.2A7KRIe4067700@gitrepo.freebsd.org>
next in thread | raw e-mail | index | archive | help
The branch main has been updated by jbeich: URL: https://cgit.FreeBSD.org/ports/commit/?id=64c2cc440f5882a61fc5a13f4f1d4a0216946698 commit 64c2cc440f5882a61fc5a13f4f1d4a0216946698 Author: Jan Beich <jbeich@FreeBSD.org> AuthorDate: 2022-11-07 17:32:58 +0000 Commit: Jan Beich <jbeich@FreeBSD.org> CommitDate: 2022-11-07 20:22:25 +0000 emulators/yuzu: avoid gcc* dep via shlib_required after 4021ff7b85d9 Error: /usr/local/bin/yuzu is linked to /usr/local/lib/gcc11/libgcc_s.so.1 from lang/gcc11 but it is not declared as a dependency --- emulators/yuzu/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/emulators/yuzu/Makefile b/emulators/yuzu/Makefile index ec37b1d185b6..60e7c873aafd 100644 --- a/emulators/yuzu/Makefile +++ b/emulators/yuzu/Makefile @@ -1,5 +1,6 @@ PORTNAME= yuzu PORTVERSION= s20221105 +PORTREVISION= 1 CATEGORIES= emulators .if make(makesum) MASTER_SITES= https://api.yuzu-emu.org/gamedb/?dummy=/:gamedb @@ -62,7 +63,7 @@ CMAKE_ON+= BUNDLE_SPEEX # only used by cubeb tests CMAKE_OFF= YUZU_USE_BUNDLED_OPUS YUZU_USE_EXTERNAL_SDL2 CMAKE_OFF+= ${CMAKE_TESTING_ON} CMAKE_TESTING_ON= YUZU_TESTS -LDFLAGS+= -static-libstdc++ # avoid libc++ conflict, requires files/patch-fmt +LDFLAGS+= -static-libstdc++ -static-libgcc # avoid libc++ conflict, requires files/patch-fmt LDFLAGS+= -Wl,--as-needed # Qt5Network ELF_FEATURES= ${PLIST_FILES:Mbin/*:S/^/+wxneeded:/} PLIST_FILES= bin/${PORTNAME}-cmd \
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202211072027.2A7KRIe4067700>