Build Error Eclipse Newely Installed

Discuss the development of new homebrew software, tools and libraries.

Moderators: cheriff, TyRaNiD

Post Reply
coolkehon
Posts: 355
Joined: Mon Oct 20, 2008 5:44 am

Build Error Eclipse Newely Installed

Post by coolkehon »

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 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 here
jojojoris
Posts: 255
Joined: Sun Mar 30, 2008 4:06 am

Re: Build Error Eclipse Newely Installed

Post by jojojoris »

coolkehon wrote:

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 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 here
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.

Code: Select all

int main(){
     SetupCallbacks();
     makeNiceGame();
     sceKernelExitGame();
}
coolkehon
Posts: 355
Joined: Mon Oct 20, 2008 5:44 am

Post by coolkehon »

it works from terminal so everything is set it just doesnt work in eclipse
jojojoris
Posts: 255
Joined: Sun Mar 30, 2008 4:06 am

Post by jojojoris »

If you use minpspw, maybe you need the update.

Code: Select all

int main(){
     SetupCallbacks();
     makeNiceGame();
     sceKernelExitGame();
}
coolkehon
Posts: 355
Joined: Mon Oct 20, 2008 5:44 am

Post by coolkehon »

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
coolkehon
Posts: 355
Joined: Mon Oct 20, 2008 5:44 am

Post by coolkehon »

ok that didnt work so how do i set the path in ubuntu linux although it works in the terminal

its in my path i think its just eclipse

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
how do i fix eclipse
Heimdall
Posts: 245
Joined: Thu Nov 10, 2005 1:29 am
Location: Netherlands
Contact:

Post by Heimdall »

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
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
Posts: 355
Joined: Mon Oct 20, 2008 5:44 am

Post by coolkehon »

not on minpspw on ubuntu 8.10 and how do i check the eclipse launch script cause if i build in terminal everything works fine i have kdevelop but dont know how to use and dont like the way it looks i want code completion also and cant get it to work in kdevelop so sticking with eclipse unless i can get code completion to work
Post Reply