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
Fmsx
Commits
060b66cb
Unverified
Commit
060b66cb
authored
Oct 16, 2021
by
Libretro-Admin
Committed by
GitHub
Oct 16, 2021
Browse files
Merge pull request #59 from salvacam/miyoo
add Miyoo target
parents
9c0f61db
7dd5c950
Pipeline
#64592
passed with stages
in 10 minutes and 19 seconds
Changes
2
Pipelines
26
Show whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
060b66cb
...
...
@@ -102,6 +102,11 @@ include:
# OpenDingux
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/dingux-mips32.yml'
# OpenDingux (ARM)
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/dingux-arm32.yml'
#################################### MISC ##################################
# Stages for building
...
...
@@ -267,3 +272,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
Makefile
View file @
060b66cb
...
...
@@ -92,6 +92,17 @@ else ifeq ($(platform), retrofw)
CFLAGS
+=
-march
=
mips32
-mtune
=
mips32
-mhard-float
CFLAGS
+=
-fomit-frame-pointer
-ffast-math
# 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
+=
-march
=
armv5te
-mtune
=
arm926ej-s
CFLAGS
+=
-fomit-frame-pointer
-ffast-math
# iOS
else
ifneq
(,$(findstring ios,$(platform)))
...
...
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