From 981c7f49b31c63534b34494ef80a18dfdf373fdb Mon Sep 17 00:00:00 2001 From: Jeremy Soller Date: Mon, 3 Mar 2025 20:50:29 -0700 Subject: [PATCH] mednafen: compile dynamically --- recipes/emulators/mednafen/recipe.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/recipes/emulators/mednafen/recipe.toml b/recipes/emulators/mednafen/recipe.toml index e17b10e9e..b5220bd7f 100644 --- a/recipes/emulators/mednafen/recipe.toml +++ b/recipes/emulators/mednafen/recipe.toml @@ -17,9 +17,17 @@ dependencies = [ "zlib", ] script = """ +DYNAMIC_INIT export SDL_LIBS="-lSDL2 -lorbital $("${TARGET}-pkg-config" --libs osmesa) -lstdc++" COOKBOOK_CONFIGURE_FLAGS+=( --without-libflac ) cookbook_configure """ + +[package] +shared-deps = [ + "liborbital", + "libiconv", + "libgcc", +]