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
snes9x2002
Commits
e6e67dc9
Commit
e6e67dc9
authored
Dec 25, 2020
by
Libretro-Admin
Browse files
Update
parent
c77c50da
Pipeline
#7154
passed with stages
in 6 minutes and 46 seconds
Changes
2
Pipelines
3
Hide whitespace changes
Inline
Side-by-side
.gitlab-ci.yml
View file @
e6e67dc9
# DESCRIPTION: GitLab CI/CD for libRetro (NOT FOR GitLab-proper)
##############################################################################
################################# BOILERPLATE ################################
##############################################################################
# Core definitions
.core-defs
:
variables
:
JNI_PATH
:
.
CORENAME
:
snes9x2002
# Inclusion templates, required for the build to work
include
:
-
template
:
Jobs/Code-Quality.gitlab-ci.yml
################################## DESKTOPS ################################
# Windows 64-bit
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/vita-static.yml'
file
:
'
/windows-x64-mingw.yml'
# Linux 64-bit
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/linux-x64.yml'
# MacOS 64-bit
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/windows-x64-mingw.yml'
file
:
'
/osx-x64.yml'
################################## CELLULAR ################################
# Android
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/android-jni.yml'
################################## CONSOLES ################################
# PlayStation Vita
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/vita-static.yml'
# Nintendo GameCube
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/ngc-static.yml'
# Nintendo Wii
-
project
:
'
libretro-infrastructure/ci-templates'
file
:
'
/wii-static.yml'
# Stages for building
stages
:
-
build-prepare
-
build-shared
-
build-static
-
test
#Desktop
libretro-build-linux-x64
:
##############################################################################
#################################### STAGES ##################################
##############################################################################
#
################################### DESKTOPS #################################
# Windows 64-bit
libretro-build-windows-x64
:
extends
:
-
.libretro-windows-x64-mingw-make-default
-
.core-defs
-
.libretro-linux-x64-make-default
libretro-build-windows-x64
:
# Linux 64-bit
libretro-build-linux-x64
:
extends
:
-
.libretro-linux-x64-make-default
-
.core-defs
-
.libretro-windows-x64-mingw-make-default
#
Android
android-armeabi-v7a
:
#
MacOS 64-bit
libretro-build-osx-x64
:
extends
:
-
.libretro-osx-x64-make-default
-
.core-defs
################################### CELLULAR #################################
# Android ARMv7a
android-armeabi-v7a
:
extends
:
-
.libretro-android-jni-armeabi-v7a
-
.core-defs
# Android ARMv8a
android-arm64-v8a
:
extends
:
-
.core-defs
-
.libretro-android-jni-arm64-v8a
-
.core-defs
# Android 64-bit x86
android-x86_64
:
extends
:
-
.core-defs
-
.libretro-android-jni-x86_64
-
.core-defs
# Android 32-bit x86
android-x86
:
extends
:
-
.core-defs
-
.libretro-android-jni-x86
-
.core-defs
# Static
################################### CONSOLES #################################
# PlayStation Vita
libretro-build-vita
:
extends
:
-
.core-defs
-
.libretro-vita-static-retroarch-master
-
.core-defs
# Nintendo GameCube
libretro-build-ngc
:
extends
:
-
.libretro-ngc-static-retroarch-master
-
.core-defs
# Nintendo Wii
libretro-build-wii
:
extends
:
-
.libretro-wii-static-retroarch-master
-
.core-defs
libretro/libretro-common/include/libretro.h
View file @
e6e67dc9
...
...
@@ -69,7 +69,7 @@ extern "C" {
# endif
# endif
# else
# if defined(__GNUC__) && __GNUC__ >= 4
&& !defined(__CELLOS_LV2__)
# if defined(__GNUC__) && __GNUC__ >= 4
# define RETRO_API RETRO_CALLCONV __attribute__((__visibility__("default")))
# else
# define RETRO_API RETRO_CALLCONV
...
...
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