Code: Select all
make clean all
make: psp-config: Command not found
makefile:49: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'. Stop.
Code: Select all
make clean all
make: psp-config: Command not found
makefile:49: /lib/build.mak: No such file or directory
make: *** No rule to make target `/lib/build.mak'. Stop.
I think you don't have set up the path correctly. So it does find a make version. (maybe you have mingw installed or something) But it cant find any pspsdk files.coolkehon wrote:i get that error when trying to compile and yet if i do it from command line it still works and compiles why wont it compile hereCode: Select all
make clean all make: psp-config: Command not found makefile:49: /lib/build.mak: No such file or directory make: *** No rule to make target `/lib/build.mak'. Stop.
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}
Code: Select all
int main(){
SetupCallbacks();
makeNiceGame();
sceKernelExitGame();
}
Code: Select all
echo $PATH
/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin:/usr/games:/usr/local/pspdev/bin:/usr/local/pspdev/psp/sdk/bin
MinPSPW has nothing to do with it. The workspace keeps track of the files on your project and psp-config is only invoked from the makefiles. If you don't have it on the path, then you should check your eclipse launch script.coolkehon wrote:on ubuntu mabye its because the workspace was used with minpspw but i removed all the other stuff why doesnt it just use a system command make since that will work well ill try to get it to work by remaking the workspace