-------------------------------------------------- Table of contents -------------------------------------------------- 1 - Files 2 - Install SystemCass 3 - Install gcc / binutils 4 - Install newlib -------------------------------------------------- 1 - Files -------------------------------------------------- -------------------------------------------------- 2 - Install SystemCass -------------------------------------------------- -------------------------------------------------- 3 - Install gcc / binutils -------------------------------------------------- BINUTILS ~~~~~~~~ first unpack the archieve tar xzvf or1k_binutils-source.tar.gz create the build directory cd or1k mkdir or32-elf-binutils cd or32-elf-binutils run configure ../binutils-2.16.1/configure --target=or32-elf --prefix=/opt/or32-elf and start the build process make finaly issueing make install will install the binutils to '/opt/or32-elf'. after adding it to execute search path export PATH=/opt/or32-elf/bin:$PATH binutils (assembler, linker, ...) are ready to be used GCC ~~~ first unpack the archieve tar xzvf or1k_gcc-source.tar.gz create the build directory cd or1k mkdir or32-elf-gcc cd or32-elf-gcc run configure ../gcc-3.4.4/configure --target=or32-elf --prefix=/opt/or32-elf --with-gnu-as --with-gnu-ld --disable-threads --enable-languages=c and start the build process make finaly issueing make install will install the gcc to '/opt/or32-elf'. -------------------------------------------------- 4 - Install newlib --------------------------------------------------