Questions tagged [armv6]

Questions related to ARMv6 Architecture. ARMv6 architecture introduced Thumb-2, TrustZone and SIMD support. ARM11 series of processors are based on ARMv6 architecture.

ARMv6 architecture introduced Thumb-2, TrustZone and SIMD support. ARM11 series of processors are based on ARMv6 architecture.

More details at

  1. http://www.arm.com/products/processors/technologies/instruction-set-architectures.php
  2. http://en.wikipedia.org/wiki/ARM_architecture
166 questions
1
vote
1 answer

iOS: Do iPhone 3GS or younger devices require armv7?

I have a third party library (ZBar) which complains about the armv7 arch when I build the project (in Terminal, using xcodebuild), and I have to set the valid architecture in the build settings to armv6 (only). The question: Will an app set to armv6…
Zoltán Matók
  • 3,923
  • 2
  • 33
  • 64
1
vote
2 answers

Failed Xcode build: no rule to process file for architecture armv6

Building my iOS App in Xcode 4.5 results in Dependency Analysis Warnings for every source file: warning: no rule to process file of type sourcecode.c.objc for architecture armv6 This eventually results in a missing binary. Any ideas what's wrong…
leo
  • 7,518
  • 1
  • 24
  • 25
1
vote
1 answer

iPhone xcode 4.5 armv 6 Universal-app

i have one universal app and now i create one update for iphone 5 But i can not send my app via apple bc Warning : At least one of the following architecturs(s) must be present: armv6 i added armv 6 armv 7 i389 in target -> architecturs(s) but…
1
vote
2 answers

Strange errors when Archiving iPhone app

So I am trying to archive my iPhone app for ad-hoc testing and I am getting some weird circumstances. When I archive it, at the top where it says archive type, for some reason it says "Mac app archive" instead of the usual "iOS App Archive" I do…
tyler53
  • 429
  • 1
  • 5
  • 16
1
vote
1 answer

Is there a more efficient way of performing an arithmetic right-shift of two signed halfwords?

I'm currently rewriting a portion of C code trying to take advantage of Armv6 SIMD and DSP extensions (I'm a beginner regarding ARM assembly language). So far I've made huge gains using SMUSD and SMUADX to implement complex number multiplication.…
user1222021
1
vote
2 answers

iOS 5 Devices Without armv7 Support

Are there any iOS 5 Devices without armv7 support? I'm deploying for iOS 5 and still build for armv6 too. I wonder whether I can drop this architecture?
fabb
  • 11,660
  • 13
  • 67
  • 111
1
vote
1 answer

Android App does not start on Armv6 - Unable to find native library

I can't find the answer to the problem. I've developed an Android App available on the market. So far few peoeple bought it and it works, but one customer received this error: java.lang.RuntimeException: Unable to start activity…
Esenthel
  • 499
  • 4
  • 17
0
votes
2 answers

What are these warnings I get when using iOS 5.0 SDK with an iPhone 3G?

I get a bunch of warnings when I test with iOS 5.0 SDK on an iPhone 3G(app runs fine though). When I test on an iPhone 4 I don't get the warnings. It looks like it has something to do with armv6. First here are my settings and some info: Xcode…
Ryan
  • 5,883
  • 13
  • 56
  • 93
0
votes
2 answers

Xcode 4.2 + armv6 + release = bugs?

I'm not really sure where my problem is but the scenario is as follows. I have a universal app set to a deployment target of 3.2 and Base SDK iOS 5.0. The project was created in Xcode 4.2. I have set my Architectures to include both armv6 and armv7…
anna
  • 2,723
  • 4
  • 28
  • 37
0
votes
1 answer

Build f2c for ARMv6, ARMv7 and i386 architecture

I want to build f2c library for ARMv6, ARMv7 and i386 architectures. I found this link ftp://ftp.netbsd.org/pub/NetBSD/packages/pkgsrc/devel/libf2c/README.html, but when I used ARM libraries, Xcode generates a warning that: "ignoring file…
Musti
  • 41
  • 2
  • 3
0
votes
1 answer

Xcode ARMV application executable is missing

I need to change my "armv" before I can upload it. But how can I do it? it says: iPhone/iPod Touch: application executable is missing a required architecture at least one of the following architecture(s) must be present: armv6
user1103460
0
votes
1 answer

signed .apk not installing on ARM11 (ARMv6) devices

An app I'm developing installs and runs fine on ARM11 (ARMv6) devices when I deploy via ADB or install the .apk that gets generated in /bin, however once I sign the .apk (using Eclipses 'export signed apk feature') the resultant .apk will not…
straya
  • 5,002
  • 1
  • 28
  • 35
0
votes
1 answer

UIAlertView with text fields not moving up

I want to display a prompt to get a user's username and password. I am doing this by displaying a UIAlertView and adding UITextFields as subviews to it. Recently I moved my project over to XCode 4.2 and I updated all my project settings. My base SDK…
0
votes
1 answer

MonoTouch error when compiling for the Device but not on Simulator: MONO_PATCH_INFO_JIT_ICALL_ADDR mono_marshal_safearray_create

In MonoTouch I get this strange error when compiling for the device (on the simulator it works fine, only when compiled for iPhone it crashes): Loaded assembly: …
Emanuele Sabetta
  • 1,571
  • 12
  • 34
0
votes
1 answer

Screen coordinate systems for armv6, armv7 (IPhone development)

I am writing a game for the iPhone/iPodTouch (using Cocos2d) and I have noticed something strange... I need to detect the parts of the screen which the player touches in order to perform certain actions. For example: -(void)ccTouchEnded:(UITouch…
artemis
  • 15
  • 1
  • 3