mirror of
https://github.com/libretro/beetle-pce-fast-libretro.git
synced 2025-02-17 05:38:28 +00:00
Add RS-90 target
This commit is contained in:
parent
9f4435dd4b
commit
33d11ded5f
@ -267,6 +267,12 @@ libretro-build-dingux-odbeta-mips32:
|
||||
- .libretro-dingux-odbeta-mips32-make-default
|
||||
- .core-defs
|
||||
|
||||
# RS-90 OpenDingux Beta
|
||||
libretro-build-rs90-odbeta-mips32:
|
||||
extends:
|
||||
- .libretro-rs90-odbeta-mips32-make-default
|
||||
- .core-defs
|
||||
|
||||
#################################### MISC ##################################
|
||||
# Emscripten
|
||||
libretro-build-emscripten:
|
||||
|
13
Makefile
13
Makefile
@ -339,6 +339,19 @@ else ifeq ($(platform), emscripten)
|
||||
TARGET := $(TARGET_NAME)_libretro_$(platform).bc
|
||||
STATIC_LINKING = 1
|
||||
|
||||
# RS90
|
||||
else ifeq ($(platform), rs90)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
CC = /opt/rs90-toolchain/usr/bin/mipsel-linux-gcc
|
||||
CXX = /opt/rs90-toolchain/usr/bin/mipsel-linux-g++
|
||||
AR = /opt/rs90-toolchain/usr/bin/mipsel-linux-ar
|
||||
fpic := -fPIC
|
||||
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
||||
LDFLAGS += -lrt
|
||||
FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32 -D_GNU_SOURCE
|
||||
CXXFLAGS += -std=c++11
|
||||
CFLAGS += -std=gnu11
|
||||
|
||||
# GCW Zero
|
||||
else ifeq ($(platform), gcw0)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
|
Loading…
x
Reference in New Issue
Block a user