Jag vill installera psptoolchain (för att utveckla program till ett psp), jag har följt den med följande guiden "ubuntu-readme" och gjort allt som står där. När jag sen ska köra scriptet krachar den efter ett tag med error:
Kod: Markera allt
updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
make[1]: Leaving directory `/home/pajn/psptoolchain/build/newlib-1.15.0/build-psp'
make: *** [all] Fel 2
../scripts/004-newlib-1.15.0.sh: Failed.
ERROR: Could not run the toolchain script.
Kod: Markera allt
## Download the source code.
wget --continue ftp://sources.redhat.com/pub/newlib/newlib-1.15.0.tar.gz || { exit 1; }
## Unpack the source code.
rm -Rf newlib-1.15.0 && tar xfvz newlib-1.15.0.tar.gz || { exit 1; }
## Enter the source directory and patch the source code.
cd newlib-1.15.0 && cat ../../patches/newlib-1.15.0-PSP.patch | patch -p1 || { exit 1; }
## Create and enter the build directory.
mkdir build-psp && cd build-psp || { exit 1; }
## Configure the build.
../configure --prefix="$PSPDEV" --target="psp" || { exit 1; }
## Compile and install.
make clean && make -j 2 && make install && make clean || { exit 1; }