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
Potator
Commits
3e3bfd78
Unverified
Commit
3e3bfd78
authored
Oct 12, 2021
by
Libretro-Admin
Committed by
GitHub
Oct 12, 2021
Browse files
Merge pull request #11 from salvacam/miyoo
add Miyoo target
parents
dacb12c8
fea24620
Pipeline
#116871
passed with stages
in 4 minutes and 41 seconds
Changes
2
Pipelines
279
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
3e3bfd78
...
...
@@ -68,6 +68,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'
...
...
@@ -207,3 +211,8 @@ libretro-build-retrofw-mips32:
-
.libretro-retrofw-mips32-make-default
-
.core-defs
# Miyoo
libretro-build-miyoo-arm32
:
extends
:
-
.libretro-miyoo-arm32-make-default
-
.core-defs
platform/libretro/Makefile
View file @
3e3bfd78
...
...
@@ -306,6 +306,15 @@ else ifeq ($(platform), retrofw)
FLAGS
+=
-fomit-frame-pointer
-ffast-math
-march
=
mips32
-mtune
=
mips32
fpic
:=
-fPIC
# MIYOO
else
ifeq
($(platform), miyoo)
TARGET
:=
$(TARGET_NAME)
_libretro.so
CC
=
/opt/miyoo/usr/bin/arm-linux-gcc
AR
=
/opt/miyoo/usr/bin/arm-linux-ar
SHARED
:=
-shared
-Wl
,--no-undefined
-Wl
,--version-script
=
link.T
FLAGS
+=
-fomit-frame-pointer
-ffast-math
-march
=
armv5te
-mtune
=
arm926ej-s
fpic
:=
-fPIC
# Raspberry Pi 1
else
ifeq
($(platform), rpi1)
TARGET
:=
$(TARGET_NAME)
_libretro.so
...
...
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