Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for arm64e architecture #283

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open

Conversation

ImanuillKant1
Copy link

Unity LevelPlay,

Copy link

@wwwcg wwwcg left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

i386 & armv7/armv7s has been deprecated in Xcode14, so now the code should be:

  xcode_version_string = `xcodebuild -version`.strip.split()[1]
  xcode_version = Pod::Version.new(xcode_version_string)
  archs = if xcode_version >= Pod::Version.new('14.0')
    # i386 & armv7/armv7s has been deprecated in Xcode14
    %w(x86_64 arm64 arm64e)
  elsif xcode_version < Pod::Version.new('10.0')
    %w(x86_64 i386 arm64 armv7 armv7s)
  else
    %w(x86_64 i386 arm64 arm64e armv7 armv7s)
  end

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants