diff options
author | jdgleaver | 2021-03-26 16:03:46 +0000 |
---|---|---|
committer | jdgleaver | 2021-03-26 16:03:46 +0000 |
commit | 3db35eab70be425c679169fbda3a08bedc023107 (patch) | |
tree | 80325433bceb9016fe38dce6c9d67fe0639ea0f9 /Makefile | |
parent | 6f2d0bbee840b9fb1e48958d3fdf140a650d512c (diff) | |
download | picogpsp-3db35eab70be425c679169fbda3a08bedc023107.tar.gz picogpsp-3db35eab70be425c679169fbda3a08bedc023107.tar.bz2 picogpsp-3db35eab70be425c679169fbda3a08bedc023107.zip |
Fix OpenDingux Beta build
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 16 |
1 files changed, 16 insertions, 0 deletions
@@ -379,6 +379,22 @@ else ifeq ($(platform), gcw0) HAVE_DYNAREC := 1 CPU_ARCH := mips +# GCW0 (OpenDingux Beta) +else ifeq ($(platform), gcw0-odbeta) + TARGET := $(TARGET_NAME)_libretro.so + CC = /opt/gcw0-toolchain/usr/bin/mipsel-linux-gcc + CXX = /opt/gcw0-toolchain/usr/bin/mipsel-linux-g++ + AR = /opt/gcw0-toolchain/usr/bin/mipsel-linux-ar + SHARED := -shared -nostdlib -Wl,--version-script=link.T + fpic := -fPIC -DPIC + CFLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32r2 -mhard-float + # The ASM code and/or MIPS dynarec of GPSP does not respect + # MIPS calling conventions, so we must use '-fno-caller-saves' + # for the OpenDingux Beta build + CFLAGS += -fno-caller-saves + HAVE_DYNAREC := 1 + CPU_ARCH := mips + # Windows else TARGET := $(TARGET_NAME)_libretro.dll |