mirror of
https://github.com/libretro/libretro-o2em.git
synced 2025-02-20 00:12:19 +00:00
parent
89985e63f6
commit
1a663a11e0
@ -99,6 +99,10 @@ include:
|
||||
- project: 'libretro-infrastructure/ci-templates'
|
||||
file: '/dingux-mips32.yml'
|
||||
|
||||
# OpenDingux (ARM)
|
||||
- project: 'libretro-infrastructure/ci-templates'
|
||||
file: '/dingux-arm32.yml'
|
||||
|
||||
# tvOS (AppleTV)
|
||||
- project: 'libretro-infrastructure/ci-templates'
|
||||
file: '/tvos-arm64.yml'
|
||||
@ -283,6 +287,12 @@ libretro-build-retrofw-mips32:
|
||||
- .libretro-retrofw-mips32-make-default
|
||||
- .core-defs
|
||||
|
||||
# Miyoo
|
||||
libretro-build-miyoo-arm32:
|
||||
extends:
|
||||
- .libretro-miyoo-arm32-make-default
|
||||
- .core-defs
|
||||
|
||||
#################################### MISC ##################################
|
||||
# Emscripten
|
||||
libretro-build-emscripten:
|
||||
|
11
Makefile
11
Makefile
@ -258,6 +258,17 @@ else ifeq ($(platform), gcw0)
|
||||
FLAGS += -DDINGUX
|
||||
fpic := -fPIC
|
||||
|
||||
# MIYOO
|
||||
else ifeq ($(platform), miyoo)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
CC = /opt/miyoo/usr/bin/arm-linux-gcc
|
||||
CXX = /opt/miyoo/usr/bin/arm-linux-g++
|
||||
AR = /opt/miyoo/usr/bin/arm-linux-ar
|
||||
SHARED := -shared -Wl,--no-undefined -Wl,--version-script=link.T
|
||||
FLAGS += -fomit-frame-pointer -march=armv5te -mtune=arm926ej-s
|
||||
FLAGS += -DDINGUX
|
||||
fpic := -fPIC
|
||||
|
||||
# RETROFW
|
||||
else ifeq ($(platform), retrofw)
|
||||
TARGET := $(TARGET_NAME)_libretro.so
|
||||
|
Loading…
x
Reference in New Issue
Block a user