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
b0449237
Commit
b0449237
authored
Jul 23, 2017
by
harakari
Browse files
Add ios-arm64 build target
parent
7c0c7333
Changes
1
Hide whitespace changes
Inline
Side-by-side
Makefile
View file @
b0449237
...
...
@@ -80,9 +80,13 @@ ifeq ($(IOSSDK),)
IOSSDK
:=
$(
shell
xcodebuild
-version
-sdk
iphoneos Path
)
endif
CC
=
cc
-arch
armv7
-isysroot
$(IOSSDK)
ifeq
($(platform),ios-arm64)
CC
=
cc
-arch
arm64
-isysroot
$(IOSSDK)
else
CC
=
cc
-arch
armv7
-isysroot
$(IOSSDK)
endif
CC_AS
=
perl ./tools/gas-preprocessor.pl
$(CC)
ifeq
($(platform),
ios9
)
ifeq
($(platform),
$(filter $(platform),ios9 ios-arm64)
)
CC
+=
-miphoneos-version-min
=
8.0
CC_AS
+=
-miphoneos-version-min
=
8.0
PLATFORM_DEFINES
:=
-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