what's wrong about the toolchain? i've just checked out from svn repos.checking for psp-as... (cached) psp-as
checking for psp-ar... (cached) psp-ar
checking for psp-ranlib... (cached) psp-ranlib
checking for psp-readelf... (cached) psp-readelf
checking for a BSD-compatible install... /usr/bin/install -c
checking whether to enable maintainer-specific portions of Makefiles... no
checking for build system executable suffix... no
updating cache .././config.cache
configure: creating ./config.status
config.status: creating Makefile
config.status: executing depfiles commands
make[1]: Leaving directory `/root/psptoolchain/build/newlib-1.15.0/build-psp'
make: *** [all] Error 2
../scripts/004-newlib-1.15.0.sh: Failed.
error while setting enviroments
error while setting enviroments
Hi,
I got the same issue. What you have to do is go into the newlib mafefile and check for the MAKEINFO variable definition.
For a reason I didn't try to investigate, it was set to something like this :
MAKEINFO = /usr/blablabla/missing makeinfo
Just remove the path that is obviously incorrect
MAKEINFO = makeinfo
Launch "make", "make install" again and it should run perfectly.
N.B. : After that, you'll have to patch the toolchain.sh script to continue installation and not to restart from the beginning, and fail on the same issue.
I got the same issue. What you have to do is go into the newlib mafefile and check for the MAKEINFO variable definition.
For a reason I didn't try to investigate, it was set to something like this :
MAKEINFO = /usr/blablabla/missing makeinfo
Just remove the path that is obviously incorrect
MAKEINFO = makeinfo
Launch "make", "make install" again and it should run perfectly.
N.B. : After that, you'll have to patch the toolchain.sh script to continue installation and not to restart from the beginning, and fail on the same issue.