This is a bit similar to Compiling ARM .s file on Mac
Especially the response given by Simon Urbanek, thanks for that!
I'm basically wondering how to make this asm file work on a jailbroken iPhone. Currently, I am cross compiling and attempting to place the object on the iPhone and run it without success because its not meant for the iPhoneOS obviously, its just ARM code with no Mach-O header. Any idea how to get this working? -isysroot may be the answer, but I've provided the SDK file as its input and I don't get a mach-o header.
Also, I would also love to know if there is a way to compile ASM code on the iphone itself without using inline gcc.
Anyways, here is the current workflow:
[On Mac]
$ cat foo.s
mov r0, r1
$/Applications/Xcode.app/Contents/Developer/Platforms/iPhoneOS.platform/Developer/usr/llvm-gcc-4.2/bin/llvm-gcc-4.2 -arch armv6 -c foo.s
$ file foo.o
foo.o: Mach-O object arm
$ otool -v -t foo.o
foo.o:
(__TEXT,__text) section
00000000 e1a00001 mov r0, r1
[On iPhone]
$ file foo.o
foo.o: Mach-O object arm
$ otool -v -t foo.ofoo.o:
(__TEXT,__text) section
00000000 e1a00001 mov r0, r1