CFLAGS += -fsanitize=undefined -fno-sanitize=shift-base
LDFLAGS += -fsanitize=undefined
endif
-ifneq ($(NO_FSECTIONS), 1)
-CFLAGS += -ffunction-sections -fdata-sections
-FSECTIONS_LDFLAGS ?= -Wl,--gc-sections
-LDFLAGS += $(FSECTIONS_LDFLAGS)
-endif
-CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
- -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
- -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
- -DDISABLE_MEM_LUTS=0
-CXXFLAGS += $(CFLAGS)
#DRC_DBG = 1
#PCNT = 1
CC_LINK ?= $(CC)
CC_AS ?= $(CC)
LDFLAGS += $(MAIN_LDFLAGS)
-EXTRA_LDFLAGS ?= -Wl,-Map=$@.map
+#EXTRA_LDFLAGS ?= -Wl,-Map=$@.map # not on some linkers
LDLIBS += $(MAIN_LDLIBS)
ifdef PCNT
CFLAGS += -DPCNT
endif
+ifneq ($(NO_FSECTIONS), 1)
+CFLAGS += -ffunction-sections -fdata-sections
+ifeq ($(GNU_LINKER),1)
+FSECTIONS_LDFLAGS ?= -Wl,--gc-sections
+LDFLAGS += $(FSECTIONS_LDFLAGS)
+endif
+endif # NO_FSECTIONS
+CFLAGS += -DP_HAVE_MMAP=$(if $(NO_MMAP),0,1) \
+ -DP_HAVE_PTHREAD=$(if $(NO_PTHREAD),0,1) \
+ -DP_HAVE_POSIX_MEMALIGN=$(if $(NO_POSIX_MEMALIGN),0,1) \
+ -DDISABLE_MEM_LUTS=0
+CXXFLAGS += $(CFLAGS)
+
# core
OBJS += libpcsxcore/cdriso.o libpcsxcore/cdrom.o libpcsxcore/cdrom-async.o \
libpcsxcore/cheat.o libpcsxcore/database.o \
OBJS += frontend/libpicofe/in_sdl.o
OBJS += frontend/libpicofe/plat_sdl.o
OBJS += frontend/libpicofe/plat_dummy.o
-OBJS += frontend/libpicofe/linux/in_evdev.o
OBJS += frontend/plat_sdl.o
+ifeq "$(HAVE_EVDEV)" "1"
+OBJS += frontend/libpicofe/linux/in_evdev.o
+endif
ifeq "$(HAVE_GLES)" "1"
OBJS += frontend/libpicofe/gl.o frontend/libpicofe/gl_platform.o
LDLIBS += $(LDLIBS_GLES)
USE_ASYNC_CDROM ?= 1
USE_LIBRETRO_VFS ?= 0
NDRC_THREAD ?= 1
+GNU_LINKER ?= 1
# Dynarec options: lightrec, ari64
DYNAREC ?= lightrec
LDFLAGS += $(ARCHFLAGS)
HAVE_PHYSICAL_CDROM = 0
FSECTIONS_LDFLAGS = -Wl,-dead_strip
+ GNU_LINKER = 0
# iOS
else ifneq (,$(findstring ios,$(platform)))
endif
CFLAGS += $(MINVERSION)
FSECTIONS_LDFLAGS = -Wl,-dead_strip
+ GNU_LINKER = 0
else ifeq ($(platform), tvos-arm64)
TARGET := $(TARGET_NAME)_libretro_tvos.dylib
MINVERSION = -mappletvos-version-min=11.0
CFLAGS += $(MINVERSION)
FSECTIONS_LDFLAGS = -Wl,-dead_strip
+ GNU_LINKER = 0
# Nintendo Switch (libnx)
else ifeq ($(platform), libnx)
have_arm_neon=""
have_arm_neon_asm=""
have_tslib=""
+have_evdev=""
have_gles=""
have_c64x_dsp=""
+have_fsections="yes"
+gnu_linker="yes"
dynarec=""
multithreading="yes"
need_sdl="no"
optimize_arm926ej="no"
# hardcoded stuff
-if [ "${OSTYPE}" = "FreeBSD" ]; then
- CC="clang"
- CXX="clang++"
- CFLAGS="-I/usr/local/include -L/usr/local/lib"
- MAKE=gmake
-else
- CC="${CC-${CROSS_COMPILE}gcc}"
- CXX="${CXX-${CROSS_COMPILE}g++}"
-fi
+case "${OSTYPE}" in
+ *BSD*|*darwin*)
+ CC="clang"
+ CXX="clang++"
+ if test -d /opt/local/include; then
+ # MacPorts
+ CFLAGS="$CFLAGS -I/opt/local/include"
+ LDFLAGS="$LDFLAGS -L/opt/local/lib"
+ fi
+ if test -d /opt/local/include; then
+ CFLAGS="$CFLAGS -I/usr/local/include"
+ LDFLAGS="$LDFLAGS -L/usr/local/lib"
+ fi
+ MAKE=gmake
+ gnu_linker="no"
+ ;;
+ *)
+ CC="${CC-${CROSS_COMPILE}gcc}"
+ CXX="${CXX-${CROSS_COMPILE}g++}"
+ ;;
+esac
AS="${AS-${CROSS_COMPILE}as}"
AR="${AS-${CROSS_COMPILE}ar}"
MAIN_LDLIBS="$LDLIBS -ldl -lm -lpthread"
config_mak="config.mak"
-if [ "${OSTYPE}" = "FreeBSD" ]; then
- SYSROOT="$sysroot"
- [ "x${SDL_CONFIG}" = "x" ] && SDL_CONFIG="${SYSROOT}/usr/local/bin/sdl-config"
-else
- SYSROOT="$(${CC} --print-sysroot)"
- [ "x${SDL_CONFIG}" = "x" ] && SDL_CONFIG="${SYSROOT}/usr/bin/sdl-config"
-fi
+case "${OSTYPE}" in
+ *BSD*|*darwin*)
+ SYSROOT="$sysroot"
+ [ "x${SDL_CONFIG}" = "x" ] && SDL_CONFIG="${SYSROOT}/usr/local/bin/sdl-config"
+ ;;
+ *)
+ SYSROOT="$(${CC} --print-sysroot 2> /dev/null || true)"
+ [ "x${SDL_CONFIG}" = "x" ] && SDL_CONFIG="${SYSROOT}/usr/bin/sdl-config"
+ ;;
+esac
fail()
{
fi
case "$ARCH" in
+aarch64|arm64)
+ have_arm_neon="yes"
+ have_arm_neon_asm="no"
+ if [ "x$dynarec" = "x" ]; then
+ dynarec="ari64"
+ fi
+ if [ "x$builtin_gpu" = "x" ]; then
+ builtin_gpu="neon"
+ fi
+ ;;
arm*)
# ARM stuff
ARCH="arm"
fi
have_arm_neon_asm=$have_arm_neon
;;
-aarch64)
- have_arm_neon="yes"
- have_arm_neon_asm="no"
- if [ "x$dynarec" = "x" ]; then
- dynarec="ari64"
- fi
- if [ "x$builtin_gpu" = "x" ]; then
- builtin_gpu="neon"
- fi
- ;;
x86_64)
if [ "x$dynarec" = "x" ]; then
dynarec="lightrec"
{
cat > $TMPC <<EOF
#include <SDL.h>
- void main() { SDL_OpenAudio(0, 0); }
+ int main(int argc, char *argv[]) { SDL_OpenAudio(0, 0); }
EOF
compile_binary "$@"
}
fi
fi
+# evdev
+if [ "x$have_evdev" = "x" ]; then
+ cat > $TMPC <<EOF
+ #include <linux/input.h>
+EOF
+ have_evdev="no"
+ if compile_object; then
+ have_evdev="yes"
+ else
+ cat > $TMPC <<EOF
+ #include <dev/evdev/input.h>
+EOF
+ if compile_object; then
+ have_evdev="yes"
+ fi
+ fi
+fi
+
# check for VideoCore stuff for Raspberry Pi
if [ -d /opt/vc/include -a -d /opt/vc/lib -a "$VIDEOCORE" != "no" ]; then
CFLAGS_GLES="$CFLAGS_GLES -I/opt/vc/include -I/opt/vc/include/interface/vcos/pthreads -I/opt/vc/include/interface/vmcs_host/linux"
if [ "$have_tslib" = "yes" ]; then
echo "HAVE_TSLIB = 1" >> $config_mak
fi
+if [ "$have_evdev" = "yes" ]; then
+ echo "HAVE_EVDEV = 1" >> $config_mak
+fi
if [ "$have_gles" = "yes" ]; then
echo "HAVE_GLES = 1" >> $config_mak
echo "CFLAGS_GLES = $CFLAGS_GLES" >> $config_mak
echo "LDLIBS_GLES = $LDLIBS_GLES" >> $config_mak
fi
+if [ "$have_fsections" = "no" ]; then
+ echo "NO_FSECTIONS = 1" >> $config_mak
+fi
+if [ "$gnu_linker" = "yes" ]; then
+ echo "GNU_LINKER = 1" >> $config_mak
+fi
echo "DYNAREC = $dynarec" >> $config_mak
if [ "$drc_cache_base" = "yes" ]; then
echo "BASE_ADDR_DYNAMIC = 1" >> $config_mak
*/
#define _GNU_SOURCE 1
-#ifdef __FreeBSD__
-#define STAT stat
-#else
-#define STAT stat64
-#endif
#include <stdio.h>
#include <string.h>
#include <errno.h>
#include "../libpcsxcore/new_dynarec/new_dynarec.h"
#include "../plugins/dfsound/spu_config.h"
#include "psemu_plugin_defs.h"
+#include "compiler_features.h"
#include "arm_features.h"
#include "revision.h"
#define REARMED_BIRTHDAY_TIME 1293306830 /* 25 Dec 2010 */
+#if defined(__linux__) && (!defined(__SIZEOF_POINTER__) || __SIZEOF_POINTER__ == 4)
+#define STAT stat64
+#else
+#define STAT stat
+#endif
#define array_size(x) (sizeof(x) / sizeof(x[0]))
int scanlines, scanline_level = 20;
int soft_scaling, analog_deadzone; // for Caanoo
int soft_filter;
+int in_evdev_allow_abs_only attr_weak; // FIXME
#ifndef HAVE_PRE_ARMV7
#define DEFAULT_PSX_CLOCK (10000 / CYCLE_MULT_DEFAULT)
"1x1", "integer scaled 2x", "scaled 4:3", "integer scaled 4:3", "fullscreen", "custom", NULL
};
static const char *men_soft_filter[] = { "None",
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
"scale2x", "eagle2x",
#endif
NULL };
"using d-pad or move it using R+d-pad";
static const char h_soft_filter[] = "Works only if game uses low resolution modes";
static const char h_gamma[] = "Gamma/brightness adjustment (default 100)";
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
static const char *men_scanlines[] = { "OFF", "1", "2", "3", NULL };
static const char h_scanline_l[] = "Scanline brightness, 0-100%";
#endif
mee_onoff ("Software Scaling", MA_OPT_SCALER2, soft_scaling, 1),
mee_enum ("Hardware Filter", MA_OPT_HWFILTER, plat_target.hwfilter, men_dummy),
mee_enum_h ("Software Filter", MA_OPT_SWFILTER, soft_filter, men_soft_filter, h_soft_filter),
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
mee_enum ("Scanlines", MA_OPT_SCANLINES, scanlines, men_scanlines),
mee_range_h ("Scanline brightness", MA_OPT_SCANLINE_LEVEL, scanline_level, 0, 100, h_scanline_l),
#endif
#include "../libpcsxcore/gpu.h"
#include "../libpcsxcore/r3000a.h"
#include "../libpcsxcore/psxcounters.h"
+#include "arm_features.h"
#define HUD_HEIGHT 10
assert(vout_h >= 192);
pl_vout_scale_w = pl_vout_scale_h = 1;
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
if (soft_filter) {
if (resolution_ok(w * 2, h * 2) && bpp == 16) {
pl_vout_scale_w = 2;
}
}
}
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
else if (soft_filter == SOFT_FILTER_SCALE2X && pl_vout_scale_w == 2)
{
neon_scale2x_16_16(src, (void *)dest, w,
}
#endif
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
static int dispmode_scale2x(void)
{
if (!resolution_ok(psx_w * 2, psx_h * 2) || psx_bpp != 16)
#ifdef BUILTIN_GPU_NEON
dispmode_doubleres,
#endif
-#ifdef __ARM_NEON__
+#ifdef HAVE_NEON32
dispmode_scale2x,
dispmode_eagle2x,
#endif
#define dynarec_local ESYM(dynarec_local)
#define ndrc_patch_link ESYM(ndrc_patch_link)
#define ndrc_get_addr_ht ESYM(ndrc_get_addr_ht)
+#define ndrc_get_addr_ht_param ESYM(ndrc_get_addr_ht_param)
#define gen_interupt ESYM(gen_interupt)
#define psxException ESYM(psxException)
#define execI ESYM(execI)
emit_cmpmem_indexedsr12_imm(invalid_code, addr, 1);
#error not handled
#endif
+ (void)count;
#ifdef INVALIDATE_USE_COND_CALL
if (count == 1) {
emit_cmpimm(HOST_TEMPREG, 1);
# always adding gpulib to deps (XXX might be no longer needed)
# users must include ../../config.mak
-LDFLAGS += -shared -Wl,--no-undefined
+LDFLAGS += -shared
+ifeq ($(GNU_LINKER),1)
+LDFLAGS += -Wl,--no-undefined
+endif
CFLAGS += $(PLUGIN_CFLAGS)
#LDLIBS_GPULIB += `sdl-config --libs`
ifdef DEBUG