Mailing List Archive

ARM7TDMI compiler
Hi!
What people use on Gentoo to build ARM7TDMI and/or Cortex-M0/M3 toolchain for
bare metal operation? And which C library, if any? Newlib?
Re: ARM7TDMI compiler [ In reply to ]
Arkadi Shishlov wrote:
> What people use on Gentoo to build ARM7TDMI and/or Cortex-M0/M3
> toolchain for bare metal operation? And which C library, if any?
> Newlib?

Same toolchain for arm7tdmi and cortex-m.

I believe this is what I am using at the moment:

crossdev --without-headers -s1 -t arm-none-eabi
crossdev -s3 -t arm-none-eabi
crossdev --ex-gdb -t arm-none-eabi


//Peter
Re: ARM7TDMI compiler [ In reply to ]
On 11/19/10 22:17, Peter Stuge wrote:
> crossdev --without-headers -s1 -t arm-none-eabi
> crossdev -s3 -t arm-none-eabi
> crossdev --ex-gdb -t arm-none-eabi

That works! Thank you.