Recognize also arm64

Change-Id: Ia66dc4bfa5ea32c6099a135d7182bac2418fb731
This commit is contained in:
Tor Lillqvist
2013-11-06 00:29:11 +02:00
parent f1d75291e3
commit fdeb3e6186

View File

@@ -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