mirror of
https://github.com/libretro/Mesen-S.git
synced 2024-11-23 16:29:41 +00:00
(macOS) Add arm64 target
This commit is contained in:
parent
8a6de7802b
commit
6d0201d645
@ -34,6 +34,10 @@ include:
|
|||||||
- project: 'libretro-infrastructure/ci-templates'
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
file: '/osx-x64.yml'
|
file: '/osx-x64.yml'
|
||||||
|
|
||||||
|
# MacOS ARM 64-bit
|
||||||
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
|
file: '/osx-arm64.yml'
|
||||||
|
|
||||||
################################## CELLULAR ################################
|
################################## CELLULAR ################################
|
||||||
# Android
|
# Android
|
||||||
- project: 'libretro-infrastructure/ci-templates'
|
- project: 'libretro-infrastructure/ci-templates'
|
||||||
@ -85,6 +89,12 @@ libretro-build-osx-x64:
|
|||||||
- .libretro-osx-x64-make-default
|
- .libretro-osx-x64-make-default
|
||||||
- .core-defs
|
- .core-defs
|
||||||
|
|
||||||
|
# MacOS ARM 64-bit
|
||||||
|
libretro-build-osx-arm64:
|
||||||
|
extends:
|
||||||
|
- .libretro-osx-arm64-make-default
|
||||||
|
- .core-defs
|
||||||
|
|
||||||
################################### CELLULAR #################################
|
################################### CELLULAR #################################
|
||||||
# Android ARMv7a
|
# Android ARMv7a
|
||||||
android-armeabi-v7a:
|
android-armeabi-v7a:
|
||||||
|
@ -45,8 +45,10 @@ TARGET_NAME := mesen-s
|
|||||||
LIBM = -lm
|
LIBM = -lm
|
||||||
|
|
||||||
ifeq ($(ARCHFLAGS),)
|
ifeq ($(ARCHFLAGS),)
|
||||||
ifeq ($(archs),ppc)
|
ifeq ($(arch),ppc)
|
||||||
ARCHFLAGS = -arch ppc -arch ppc64
|
ARCHFLAGS = -arch ppc -arch ppc64
|
||||||
|
else ifneq ($(arch),arm)
|
||||||
|
ARCHFLAGS = -arch arm64
|
||||||
else
|
else
|
||||||
ARCHFLAGS = -arch i386 -arch x86_64
|
ARCHFLAGS = -arch i386 -arch x86_64
|
||||||
endif
|
endif
|
||||||
|
Loading…
Reference in New Issue
Block a user