Tool Building, C Runtime Library: Newlib 1.12.0
posted by mmitchel at 2/11/2004 12:05:00 PM
Newlib is a C library intended for use on embedded systems. It is a conglomeration of several library parts, all under free software licenses that make them easily usable on embedded products.
The following commands are issued to generate the target directory.
$ CFLAGS="-s -O3" export CFLAGS
$ PATH=/gnude/bin:$PATH export PATH
$ mkdir build-newlib; cd build-newlib; ../newlib-1.12.0/configure --target=arm-elf --prefix=/gnude --disable-shared --disable-nls --disable-win32-registry --enable-interwork --enable-multilib; make all install; cd ..
<< Home