I have spent many hours trying to figure this out, but I have no idea what to do.
Error= make: psp-config: Command not found
Makefile:24: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'. Stop.
(I used the standard makefile for 3xx)
When I type make into the terminal it works fine, and when I type in echo $PSPSDK I get the correct path, but the IDE won't work at all. I tried it on both Anjuta and KDE. I also added the three lines that you need to bashrc. Can someone please help?
ubuntu 9.04 compile error
Notice the error says it can't find psp-config. That causes the makefile to not find build.mak. You either don't have everything installed, or haven't done all the exports. Here are my exports:
You would need to change the path in the first export to wherever you have your pspdev directory. I recommend people put the toolchain and sdk in their user directory. This allows you to install further libraries and whatnot without either doing sudo or having to chown the pspdev directory.
Code: Select all
export PSPDEV="/home/jlfenton/Tools/pspdev"
export PSPSDK="$PSPDEV/psp/sdk"
export PSPPATH="$PSPDEV/bin:$PSPDEV/psp/bin:$PSPSDK/bin"
export PATH="$PATH:$PSPPATH"
export PKG_CONFIG_PATH="$PSPDEV/psp/lib/pkgconfig"