Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

what is the difference between ARM7 and ARM7s

Tags:

xcode

ios

arm

I realized that xcode 4.5 comes with ARM7 and ARM7s in valid architectures. I got a link error. After sometime digging, I removed arm7s and things start to work again.

I need to understand what is ARM7s, I am assuming this is related to iPhone5?

Thank you.

like image 900
Kenny Lim Avatar asked Sep 24 '12 17:09

Kenny Lim


1 Answers

Yes you are right about armv7s is about the iPhone 5. Here some summary info I found on the web:

  • ARMv6 ISA (used by the ARM11 core in the iPhone 2G and iPhone 3G)
  • ARMv7 (used by modern ARM cores, iPhone 3GS, iPhone 4 and 4S)
  • ARMv7s (new A6 SoC for iPhone 5).

Ref: There and there.

like image 191
iMathieuB Avatar answered Sep 27 '22 20:09

iMathieuB