From 4ab54213977e53b4e73931e75e113a0f92d045b5 Mon Sep 17 00:00:00 2001 From: XargonWan Date: Sun, 4 Aug 2024 22:20:07 +0900 Subject: [PATCH] MISSING_LIBS: trying to fetch libshaderc --- net.retrodeck.retrodeck.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/net.retrodeck.retrodeck.yml b/net.retrodeck.retrodeck.yml index 4da8db52..86267ef9 100644 --- a/net.retrodeck.retrodeck.yml +++ b/net.retrodeck.retrodeck.yml @@ -535,7 +535,7 @@ modules: missing_libs=$(find "${FLATPAK_DEST}/bin" -type f -exec ldd {} + 2>/dev/null | grep "not found" | awk '{print $1}' | sort | uniq) # for some reason these libraries are not recognized as missing so we mantain this list - manually_imported="libpostproc.so.56 libswscale.so.6" + manually_imported="libpostproc.so.56 libswscale.so.6 libshaderc_shared.so.1" missing_libs="$missing_libs $manually_imported"