mirror of
https://github.com/Pecusx/libretro-atari800.git
synced 2026-05-20 22:33:22 +02:00
add target Miyoo
This commit is contained in:
@@ -91,6 +91,10 @@ include:
|
|||||||
- project: 'libretro-infrastructure/ci-templates'
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
file: '/dingux-mips32.yml'
|
file: '/dingux-mips32.yml'
|
||||||
|
|
||||||
|
# OpenDingux (ARM)
|
||||||
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
|
file: '/dingux-arm32.yml'
|
||||||
|
|
||||||
#################################### MISC ##################################
|
#################################### MISC ##################################
|
||||||
|
|
||||||
# Stages for building
|
# Stages for building
|
||||||
@@ -234,3 +238,8 @@ libretro-build-retrofw-mips32:
|
|||||||
- .libretro-retrofw-mips32-make-default
|
- .libretro-retrofw-mips32-make-default
|
||||||
- .core-defs
|
- .core-defs
|
||||||
|
|
||||||
|
# Miyoo
|
||||||
|
libretro-build-miyoo-arm32:
|
||||||
|
extends:
|
||||||
|
- .libretro-miyoo-arm32-make-default
|
||||||
|
- .core-defs
|
||||||
@@ -357,6 +357,16 @@ else ifeq ($(platform), retrofw)
|
|||||||
CFLAGS += -fomit-frame-pointer -march=mips32 -mtune=mips32 -mhard-float
|
CFLAGS += -fomit-frame-pointer -march=mips32 -mtune=mips32 -mhard-float
|
||||||
PLATFORM_DEFINES += -DRETROFW
|
PLATFORM_DEFINES += -DRETROFW
|
||||||
|
|
||||||
|
#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
|
||||||
|
fpic := -fPIC
|
||||||
|
SHARED := -shared -Wl,-version-script=link.T -Wl,-no-undefined
|
||||||
|
CFLAGS += -fomit-frame-pointer -march=armv5te -mtune=arm926ej-s
|
||||||
|
|
||||||
# emscripten
|
# emscripten
|
||||||
else ifeq ($(platform), emscripten)
|
else ifeq ($(platform), emscripten)
|
||||||
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
TARGET := $(TARGET_NAME)_libretro_emscripten.bc
|
||||||
|
|||||||
Reference in New Issue
Block a user