
To build your mips-linux-uclibc toolchain:

cp sagem.config .config
make

ATTENTION! The toolchain does not build in parallel, when
make invoked with a -jN (where is a number >=1).

The result is in: build_mips_nofpu/staging_dir/

To use the toolchain, just export it to the PATH:
export PATH="${PATH}:$(pwd)/build_mips_nofpu/staging_dir/bin"

You can also copy the toolchain to another place, eg.:
cp -a "$(pwd)/build_mips_nofpu/staging_dir" \
      /opt/toolchain/linux-mips-uclibc
export PATH="${PATH}:/opt/toolchain/linux-mips-uclibc/bin"
