Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in
Toggle navigation
Menu
Open sidebar
Libretro
RACE
Commits
2af96d0f
Unverified
Commit
2af96d0f
authored
Oct 16, 2021
by
Salvador
Committed by
GitHub
Oct 16, 2021
Browse files
Miyoo (#30)
* add miyoo target * add Miyoo target
parent
51a0912c
Pipeline
#63814
passed with stages
in 8 minutes and 28 seconds
Changes
2
Pipelines
21
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
2af96d0f
...
...
@@ -87,6 +87,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'
...
...
@@ -255,4 +259,9 @@ libretro-build-retrofw-mips32:
extends
:
-
.libretro-retrofw-mips32-make-default
-
.core-defs
# Miyoo
libretro-build-miyoo-arm32
:
extends
:
-
.libretro-miyoo-arm32-make-default
-
.core-defs
Makefile
View file @
2af96d0f
...
...
@@ -359,6 +359,18 @@ else ifeq ($(platform), retrofw)
CFLAGS
+=
-fomit-frame-pointer
-ffast-math
-march
=
mips32
-mtune
=
mips32
-mhard-float
CXXFLAGS
+=
$(CFLAGS)
# 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
=
$(LIBRETRO_DIR)
/link.T
PLATFORM_DEFINES
:=
-DCC_RESAMPLER
-DCC_RESAMPLER_NO_HIGHPASS
CFLAGS
+=
-fomit-frame-pointer
-ffast-math
-march
=
armv5te
-mtune
=
arm926ej-s
CXXFLAGS
+=
$(CFLAGS)
# Windows MSVC 2010 x64
else
ifeq
($(platform), windows_msvc2010_x64)
CC
=
cl.exe
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment