From 4cb766e053509c095b225fde19a2caf2b5d68b27 Mon Sep 17 00:00:00 2001 From: twinaphex Date: Tue, 16 Mar 2021 19:43:24 +0100 Subject: [PATCH] Add ios9 core --- .gitlab-ci.yml | 10 ++++++++++ Makefile | 2 +- 2 files changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 7d03c6d..3e577e0 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -46,6 +46,10 @@ include: - project: 'libretro-infrastructure/ci-templates' file: '/ios-arm64.yml' + # iOS (armv7) + - project: 'libretro-infrastructure/ci-templates' + file: '/ios9.yml' + ################################## CONSOLES ################################ # Nintendo 3DS - project: 'libretro-infrastructure/ci-templates' @@ -159,6 +163,12 @@ libretro-build-ios-arm64: - .libretro-ios-arm64-make-default - .core-defs +# iOS (armv7) [iOS 9 and up] +libretro-build-ios9: + extends: + - .libretro-ios9-make-default + - .core-defs + # tvOS libretro-build-tvos-arm64: extends: diff --git a/Makefile b/Makefile index e7175cf..758490e 100644 --- a/Makefile +++ b/Makefile @@ -105,7 +105,7 @@ else ifneq (,$(findstring ios,$(platform))) fpic := -fPIC SHARED := -dynamiclib MINVERSION := - CFLAGS += -Wno-error=implicit-function-declaration -DHAVE_POSIX_MEMALIGN + CFLAGS += -Wno-error=implicit-function-declaration -DHAVE_POSIX_MEMALIGN -DIOS -marm ifeq ($(IOSSDK),) IOSSDK := $(shell xcodebuild -version -sdk iphoneos Path)