* Fixes to libretro makefile for emscripten builds
* Include default 0 for pthread
* update flags to support both threaded and non-threaded cases
# 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