From fdeb3e618667bc7b556dc6be9b93c451a91fa8ba Mon Sep 17 00:00:00 2001 From: Tor Lillqvist Date: Wed, 6 Nov 2013 00:29:11 +0200 Subject: [PATCH] Recognize also arm64 Change-Id: Ia66dc4bfa5ea32c6099a135d7182bac2418fb731 --- ios/CustomTarget_LibreOffice_app.mk | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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