Skip to content

Instantly share code, notes, and snippets.

@acalism
Created December 23, 2015 07:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save acalism/1786ceda4567942a33cc to your computer and use it in GitHub Desktop.
Save acalism/1786ceda4567942a33cc to your computer and use it in GitHub Desktop.
$(ARCHS_STANDARD) 从Xcode6之后,armv7s被弃,后者用于iPhone5和5c,而从5s之后就全面转向arm64
查看库或可执行文件支持的arch,file $fileName, 或lipo -info $fileName,例如,
$ lipo -info ESecure
Architectures in the fat file: ESecure are: armv7 arm64
$ file ESecure
ESecure: Mach-O universal binary with 2 architectures
ESecure (for architecture armv7): Mach-O executable arm
ESecure (for architecture arm64): Mach-O 64-bit executable
@acalism
Copy link
Author

acalism commented Dec 23, 2015

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment