before, it give me other error: not could download gcc-4.1.0, but it is installer, because i put sudo apt-get install gcc, i don't know what is the problem i need other library??
No - you need to have gcc installed to build the toolchain, and apt-get install gcc will do that, but during making the toolchain
another version of binutils(2.16.1), gcc(4.1.0), newlib(1.15.0), gdb(6.4), insight(6.4) is downloaded and installed. For each of these packages the toolchain install script downloads the
source code for these from
ftp://ftp.gnu.org.
eg.
wget --continue ftp://ftp.gnu.org/pub/gnu/gcc/gcc-4.1.0/gcc-4.1.0.tar.bz2
Then it applies the pspsdk patch to that source, then it builds and installs it. This version of gcc will be called 'psp-gcc'.
So if it won't download gcc-4.1.0 from
ftp://ftp.gnu.org then you won't be able to build the pspsdk. The two possibilities for that are that either you don't have wget installed or that ftp.gnu.org was or is inaccessible to you.
Have you made any changes to the scripts? Looks like you are failing at stage 6 which is pspsdk which means gcc-4.1.0 was already built, but if it didn't download, that's impossible.
Jim