Skip to content

Commit

Permalink
Update ios.toolchain.cmake
Browse files Browse the repository at this point in the history
Correct spelling mistakes
  • Loading branch information
leetal committed Apr 7, 2019
1 parent 6e52326 commit 8ffdeb0
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions ios.toolchain.cmake
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ if(PLATFORM_INT STREQUAL "OS")
set(SDK_NAME iphoneos)
if(NOT IOS_ARCH)
if (XCODE_VERSION VERSION_GREATER 10.0)
set(IOS_ARCH armv7 armv7s arm64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missung bitcode markers for example
set(IOS_ARCH armv7 armv7s arm64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missing bitcode markers for example
else()
set(IOS_ARCH armv7 armv7s arm64)
endif()
Expand All @@ -183,7 +183,7 @@ elseif(PLATFORM_INT STREQUAL "OS64")
set(SDK_NAME iphoneos)
if(NOT IOS_ARCH)
if (XCODE_VERSION VERSION_GREATER 10.0)
set(IOS_ARCH arm64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missung bitcode markers for example
set(IOS_ARCH arm64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missing bitcode markers for example
else()
set(IOS_ARCH arm64)
endif()
Expand All @@ -193,7 +193,7 @@ elseif(PLATFORM_INT STREQUAL "OS64COMBINED")
if(MODERN_CMAKE)
if(NOT IOS_ARCH)
if (XCODE_VERSION VERSION_GREATER 10.0)
set(IOS_ARCH arm64 x86_64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missung bitcode markers for example
set(IOS_ARCH arm64 x86_64) # Add arm64e when Apple have fixed the integration issues with it, libarclite_iphoneos.a is currently missing bitcode markers for example
else()
set(IOS_ARCH arm64 x86_64)
endif()
Expand Down

0 comments on commit 8ffdeb0

Please sign in to comment.