Eric Fowler wrote: > I wish to compile C code that will execute directly on an ARM7TDMI chip that > has no operating system. My GnuARM compiler wants to link to syscalls (a > Linux-ism) and generate ELF and COFF and all that. > > How to generate a naked binary? It'll only generate syscalls for things you call; any missing routines like memcpy() you'll have to provide yourself. As for producing the binary that's an issue for binutils, but objcopy can do it. Andrew.