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
0
votes
1 answer

Compile OpenSSL FIPS for Android armv6

I have seen several answers for how to compile OpenSSL for Android, and the FIPS module for Android armv7 (which I followed), but I have yet to figure out how to make the FIPS module for armv6 on Android. Currently if I follow the directions here:…
T.Leavy
  • 504
  • 5
  • 16
0
votes
1 answer

Adding ObjectiveFlickr to Project

I'm trying to add the ObjectiveFlickr framework to my project. I tried to follow these instructions: Add ObjectiveFlickr.xcodeproj to your Mac project (from Xcode menu Project > Add to Project...) On your app target, open the info window (using Get…
YogevSitton
  • 10,068
  • 11
  • 62
  • 95
0
votes
2 answers

iPhone: how to make a fat library containing armv7s support?

I have external libraries for armv6, armv7, i386 and armv7s. When I try to put all together using lipo, I got an error message like so, saying armv7s isn't supported: lipo: known architecture flags are: any little big ppc64 x86_64 ppc970-64 ppc i386…
neowinston
  • 7,584
  • 10
  • 52
  • 83
0
votes
0 answers

Android Virtual Device VFP for ARMv5

AVD has VFP support for armeabi-v7a but has not for armeabi. I experience problem with float point on ARMv6 and wish to setup ARMv6 with FPU on virtual device. (It is hardware similar to Samsung Galaxy ACE, Y, Pocket, GIO) So I look for solution to…
Max
  • 6,286
  • 5
  • 44
  • 86
0
votes
1 answer

PhoneGap Project Armv6

I built a Phonegap 2.0.1 project, and under the build settings for the CordovaLib.ecodeproj it says Architectures: Standard (armv7, armv7s) - $(ARCHS_STANDARD_32_BIT) Valid Architectures: 1386 armv7 armv7 However Under the build settings for my…
Ben_hawk
  • 2,476
  • 7
  • 34
  • 59
0
votes
1 answer

Objective-C: .a fat file with more than armv6/7

Although I set up my static library project in XCode to build armv6, armv7, i386 and x86_64, it does not build a full fat file :-( lipo -info lib...a tells me that it is a fat file with armv6 and armv7, nothing else, no more architectures…
ledy
  • 1,527
  • 6
  • 22
  • 33
0
votes
1 answer

Does iPhone using ARMv7 instructions supports ARMv6 compiled binaries?

Is it possible to run armv6 compiled binaries on a device that has the armv7 support (iPhone 3GS+) ? For example, can I use a library that has been compiled with the armv6 instructions on an iPhone 5?
Vincent
  • 1,013
  • 14
  • 33
0
votes
2 answers

Xcode 4.5 armv6 error when not having armv6 in target?

Hello, I am currently getting the follow errors. I have tried everything posted before in other forums. This is Xcode 4.5 I know it doesn't really support armv6, I have tried manually adding it and it still comes up. I have tried switching over the…
0
votes
0 answers

Complie framework only for armv7?

Hi i have an App that supports armv6/armv7 architecture My Problem is i have .framework file that was only available for armv7. My Question is: How i can set the .framework file to compile only for arm7 architecture. I will support both…
Zeropointer
  • 510
  • 2
  • 7
  • 24
0
votes
0 answers

How to compile for iPhone 4

here is my problem: I have a fully working app which runs quite perfect on my iPhone 4S running iOS 5.1.1. Now Apple rejected my app because they found that the app crashed upon launch on iPhone 4 running iOS 5.1.1. What do I have to do to compile…
0
votes
1 answer

App won't run on iOS 4.2, Architecture issue

I have an app that I developed in Xcode 4.3.2. I am using the base SDK as 5.1. The app installs fine in iOS 5.0 and above. But I need to support iOS 4.0 and above. The compiler I am using is Apple LLVM compiler 3.1. I have added both armv6 and armv7…
Bani Uppal
  • 866
  • 9
  • 17
0
votes
1 answer

How to use armv6 third party libraries in an armv7 app?

I have two 3rd party libraries. One just has a build for armv6 and the other just has a build for armv7. I need to use both of them in my iOS enterprise application. I've asked the armv6 library vendors to supply a armv7 version, but they haven't…
Owen Hartnett
  • 5,925
  • 2
  • 19
  • 35
-1
votes
1 answer

How big are the armv6 and armv7 architectures?

When I submitted my app for review I got and email saying in processing, my app size jumped from 14mb to 34mb. That is huge and totally unfair! I assume that this was all due to the arm architectures. But, how can they be that big? That means it is…
theUser
  • 105
  • 1
  • 7
-1
votes
1 answer

Clarity About TST Instruction - ARM Assembly

So here I have the following code (ARMv6 assembly): wait$: ldr r2,[r0,#24] //read 32 bits from addr + 24 in r0 and store in r2 tst r2,#0x80000000 //???? bne wait$ I understand all of the lines other than the tst instruction. I have…
Packa
  • 173
  • 14
-1
votes
1 answer

Can anoyone provide a good tutorial/book/code example for OpenGL ES 1.1 for ARM?

I've searched for some tutorials for OpenGL ES 1.1 in order to be able to write a little demo app on an ARM 11 eva board; the problem I'm facing is that all what I'm finding is for iOS or Android or something using GLUT. I would like something…
emmerich
  • 512
  • 1
  • 5
  • 14
1 2 3
10
11