I have a simple assembly file (temp.S) with one thumb2 (T32) instruction. for exmaple:
orr R4,R7,R8
I want to assemble it with the linaro assembler but I can't find the right flags to do it.
if I try:
arm-linux-gnueabihf-as -o temp.o temp.S
then I get the assembly of the A32 version of the instruction
however, if I try:
arm-linux-gnueabihf-as -o temp.o -mthumb temp.S
I get the error messages
> temp.S: Assembler messages:
> temp.S:1: Error: lo register required -- `orr R4,R7,R8
as if it was expecting a T16 instruction.
Any help with the correct flags for T32 instructions would be appreciated.
By the way, my assembler version is: GNU assembler (crosstool-NG linaro-1.13.1-4.8-2014.01 - Linaro GCC 2013.11) 2.24.0.20131220
Quoting from the Ubuntu wiki:
TL;DR, put this in your assembly file(s):