summaryrefslogtreecommitdiff
path: root/ios
diff options
context:
space:
mode:
authorTor Lillqvist <tml@collabora.com>2013-11-06 00:29:11 +0200
committerTor Lillqvist <tml@collabora.com>2013-11-06 00:44:01 +0200
commitfdeb3e618667bc7b556dc6be9b93c451a91fa8ba (patch)
treebaf475c748b02e8afdc4ede3e098ed24ef080b12 /ios
parentf1d75291e3e04c636b4dc2c44827d85b0263c46b (diff)
Recognize also arm64
Change-Id: Ia66dc4bfa5ea32c6099a135d7182bac2418fb731
Diffstat (limited to 'ios')
-rw-r--r--ios/CustomTarget_LibreOffice_app.mk5
1 files changed, 4 insertions, 1 deletions
diff --git a/ios/CustomTarget_LibreOffice_app.mk b/ios/CustomTarget_LibreOffice_app.mk
index 7ec50345bc8f..719ff0905bb7 100644
--- a/ios/CustomTarget_LibreOffice_app.mk
+++ b/ios/CustomTarget_LibreOffice_app.mk
@@ -12,7 +12,10 @@ $(eval $(call gb_CustomTarget_CustomTarget,ios/LibreOffice_app))
# looking for the "iarmv7" or "i386" in the -arch option that is part
# of $(CC)
-ifneq ($(filter i386,$(CC)),)
+ifneq ($(filter arm64,$(CC)),)
+xcode_sdk=iphoneos
+xcode_arch=arm64
+else ifneq ($(filter i386,$(CC)),)
xcode_sdk=iphonesimulator
xcode_arch=i386
else