| View previous topic :: View next topic |
| Author |
Message |
webjeff
Joined: 05 May 2005 Posts: 66
|
Posted: Mon Jul 11, 2005 4:06 am Post subject: Tryin to compile PSPSDK |
|
|
Here's what I'm getting
| Code: |
$ make
make all-recursive
make[1]: Entering directory `/home/Jking/pspsdk-1.0+beta'
Making all in sdk
make[2]: Entering directory `/home/Jking/pspsdk-1.0+beta/sdk'
Making all in audio
make[3]: Entering directory `/home/Jking/pspsdk-1.0+beta/sdk/audio'
no -g -O2 -G0 -Wall -I../../sdk/base -I../../sdk/kernel -c `test -f 'audio.S' |
| echo './'`audio.S
/bin/sh: no: command not found
make[3]: *** [audio.o] Error 127
make[3]: Leaving directory `/home/Jking/pspsdk-1.0+beta/sdk/audio'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/Jking/pspsdk-1.0+beta/sdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Jking/pspsdk-1.0+beta'
make: *** [all] Error 2
|
My paths I think are screwed up is the problem, as I saw in a similar post, however they never posted a fix, just that the paths were messed like mine, here are my paths:
PSPDEV='c:\pspdev'
PSPDEV_INCLUDEDIR='c:\pspdev/psp/include'
PSPDEV_LIBDIR='c:\pspdev/psp/lib'
PSPSDK='c:\pspdev/psp/sdk'
PSPSDK_CFLAGS='-g -O2 -G0 -Wall'
PSPSDK_INCLUDEDIR='c:\pspdev/psp/sdk/include'
PSPSDK_LIBDIR='c:\pspdev/psp/sdk/lib'
I dont think this is right, but I dont know what their suppose to be, I tried pathing to everything, can't figure it out.
I'm running Cygwin on a Windows XP machine, so I dont have a usr/ directory like that, I dont think, I'm new to cygwin.
Thanks
Jeff |
|
| Back to top |
|
 |
Lukasz

Joined: 19 Jan 2004 Posts: 248 Location: Denmark
|
Posted: Mon Jul 11, 2005 6:04 am Post subject: |
|
|
| You need to run the cygwin setup and install "sh". |
|
| Back to top |
|
 |
webjeff
Joined: 05 May 2005 Posts: 66
|
Posted: Mon Jul 11, 2005 6:33 am Post subject: |
|
|
I have sh installed. I think its something with my path. Any other ideas??
Thanks
Jeff |
|
| Back to top |
|
 |
Agoln

Joined: 08 Jun 2005 Posts: 326 Location: Fort Wayne, IN
|
Posted: Mon Jul 11, 2005 7:54 am Post subject: |
|
|
Do you have gcc? _________________ Lego of my Ago! |
|
| Back to top |
|
 |
turkeyman

Joined: 20 Oct 2004 Posts: 75 Location: Brisbane, Australia
|
Posted: Mon Jul 11, 2005 9:42 am Post subject: |
|
|
i had that problem when i first attempted to build it..
iirc, when you ./bootstrap, it searches for psp-gcc/etc (./bootstrap fills out the ./configure script) .. if they are not in your path, it wont find them, and it will fill the 'CC =' lines in with 'no'.. these should actually be the names of the executables to perform the appropriate tasks (ie. "CC = psp-gcc.exe") ...
(look in ./configure for the CC = etc lines, they are arobably all 'no')
all you need to do it make sure psp-gcc and co are in your path, then run ./bootstrap again..
then you should be able to ./configure with no problems..
(disclaimer: i dont actually have any real idea what i'm doing, i'm just figuring this all out as i go along myself :P) |
|
| Back to top |
|
 |
|