Fixes to libretro makefile for emscripten builds (#878)
authorJoe Osborn <joe.osborn@mac.com>
Sat, 22 Mar 2025 23:34:25 +0000 (16:34 -0700)
committernotaz <notasas@gmail.com>
Sat, 22 Mar 2025 23:35:37 +0000 (01:35 +0200)
* Fixes to libretro makefile for emscripten builds

* Include default 0 for pthread

* update flags to support both threaded and non-threaded cases

Makefile.libretro

index 2197946..d04f0b8 100644 (file)
@@ -618,12 +618,29 @@ else ifeq ($(platform), miyoo)
 # Emscripten
 else ifeq ($(platform), emscripten)
    TARGET  := $(TARGET_NAME)_libretro_$(platform).bc
+   pthread ?= 0
    fpic    := -fPIC
    NO_MMAP = 1
+   # we can use -lz for emscripten's built-in zlib port
+   WANT_ZLIB=0
    CFLAGS += -DNO_DYLIB -DNO_SOCKET
    CFLAGS += -msimd128 -ftree-vectorize
-   LIBPTHREAD :=
-   NO_PTHREAD=1
+   # when compiling with pthreads...
+   ifneq ($(pthread), 0)
+      # use -lpthread
+      LIBPTHREAD := -lpthread
+      NO_PTHREAD=0
+      # but we don't want to include libretro-common's rthread object files here
+      USE_RTHREADS=0
+      USE_ASYNC_CDROM=0
+      # so we disable some uses of threads within pcsx_rearmed.
+      # is this a good solution? I don't know!
+   else
+      LIBPTHREAD :=
+      USE_RTHREADS=0
+      USE_ASYNC_CDROM=0
+      NO_PTHREAD=1
+   endif
    DYNAREC =
    STATIC_LINKING = 1
    HAVE_PHYSICAL_CDROM = 0