mirror of
https://github.com/libretro/potator.git
synced 2024-11-23 08:29:41 +00:00
Merge pull request #6 from jdgleaver/gitlab-rs90
Add RS-90 build target
This commit is contained in:
commit
f40c6d99f5
@ -194,3 +194,9 @@ libretro-build-dingux-odbeta-mips32:
|
||||
extends:
|
||||
- .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
|
||||
|
@ -279,6 +279,15 @@ else ifeq ($(platform), ctr)
|
||||
FLAGS += -DARM11 -D_3DS
|
||||
STATIC_LINKING = 1
|
||||
|
||||
# RS90
|
||||
else ifeq ($(platform), rs90)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
CC = /opt/rs90-toolchain/usr/bin/mipsel-linux-gcc
|
||||
AR = /opt/rs90-toolchain/usr/bin/mipsel-linux-ar
|
||||
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
||||
FLAGS += -fomit-frame-pointer -ffast-math -march=mips32 -mtune=mips32
|
||||
fpic := -fPIC
|
||||
|
||||
# GCW0
|
||||
else ifeq ($(platform), gcw0)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
|
Loading…
Reference in New Issue
Block a user