From 57b762eb2976229a1297bd39a00976b3753de4d7 Mon Sep 17 00:00:00 2001 From: KreitinnSoftware <80591934+KreitinnSoftware@users.noreply.github.com> Date: Mon, 2 Oct 2023 13:26:20 -0300 Subject: Add __sF, __assert2 Symbol and set PThread Symbols on libc (#1004) * Add __sF, __assert2 Symbol and set PThread Symbols on libc * [ANDROID] Fix Most Library Names --- src/wrapped/wrappedgstcontroller.c | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) (limited to 'src/wrapped/wrappedgstcontroller.c') diff --git a/src/wrapped/wrappedgstcontroller.c b/src/wrapped/wrappedgstcontroller.c index a6da1b3d..c2a7cfc5 100644 --- a/src/wrapped/wrappedgstcontroller.c +++ b/src/wrapped/wrappedgstcontroller.c @@ -12,7 +12,12 @@ #include "librarian/library_private.h" #include "x64emu.h" -const char* gstcontrollerName = "libgstcontroller-1.0.so.0"; +#ifdef ANDROID + const char* gstcontrollerName = "libgstcontroller-1.0.so"; +#else + const char* gstcontrollerName = "libgstcontroller-1.0.so.0"; +#endif + #define LIBNAME gstcontroller #define PRE_INIT \ -- cgit 1.4.1