Tryin to compile PSPSDK

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

Moderators: cheriff, TyRaNiD

Post Reply
webjeff
Posts: 66
Joined: Thu May 05, 2005 2:51 am

Tryin to compile PSPSDK

Post by webjeff »

Here's what I'm getting

Code: Select all

$ 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
User avatar
Lukasz
Posts: 248
Joined: Mon Jan 19, 2004 8:37 pm
Location: Denmark
Contact:

Post by Lukasz »

You need to run the cygwin setup and install "sh".
webjeff
Posts: 66
Joined: Thu May 05, 2005 2:51 am

Post by webjeff »

I have sh installed. I think its something with my path. Any other ideas??

Thanks
Jeff
User avatar
Agoln
Posts: 326
Joined: Wed Jun 08, 2005 3:14 am
Location: Fort Wayne, IN

Post by Agoln »

Do you have gcc?
Lego of my Ago!
User avatar
turkeyman
Posts: 75
Joined: Wed Oct 20, 2004 7:38 pm
Location: Brisbane, Australia
Contact:

Post by turkeyman »

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)
Post Reply