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
cannonball
Commits
11906d13
Unverified
Commit
11906d13
authored
Aug 07, 2019
by
Libretro-Admin
Committed by
GitHub
Aug 07, 2019
Browse files
Merge pull request #11 from yoshisuga/ios_arm64_support
Add ios-arm64 support
parents
0f3566af
9380aacf
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
11906d13
...
...
@@ -100,8 +100,15 @@ else ifneq (,$(findstring ios,$(platform)))
ifeq
($(IOSSDK),)
IOSSDK
:=
$(
shell
xcodebuild
-version
-sdk
iphoneos Path
)
endif
CC
=
cc
-arch
armv7
-isysroot
$(IOSSDK)
CXX
=
c++
-arch
armv7
-isysroot
$(IOSSDK)
ifeq
($(platform),ios-arm64)
CC
=
cc
-arch
arm64
-isysroot
$(IOSSDK)
CXX
=
c++
-arch
arm64
-isysroot
$(IOSSDK)
else
CC
=
cc
-arch
armv7
-isysroot
$(IOSSDK)
CXX
=
c++
-arch
armv7
-isysroot
$(IOSSDK)
endif
IPHONEMINVER
:=
ifeq
($(platform),$(filter $(platform),ios9 ios-arm64))
IPHONEMINVER
=
-miphoneos-version-min
=
8.0
...
...
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