PSPSDK install error

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

Moderators: cheriff, TyRaNiD

Post Reply
BlackIce
Posts: 3
Joined: Sat Jul 09, 2005 12:34 pm

PSPSDK install error

Post by BlackIce »

Well i am following this tutorial: http://psp.amazingspringthing.com/tutor ... lchain.php
I got to the part where you type "make" in the pspsdk-1.0+beta folder.

This is the error i get

Code: Select all

Sean1@COMP ~/pspsdk-1.0+beta
$ make
make  all-recursive
make[1]: Entering directory `/home/Sean1/pspsdk-1.0+beta'
Making all in sdk
make[2]: Entering directory `/home/Sean1/pspsdk-1.0+beta/sdk'
Making all in audio
make[3]: Entering directory `/home/Sean1/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/Sean1/pspsdk-1.0+beta/sdk/audio'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/Sean1/pspsdk-1.0+beta/sdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Sean1/pspsdk-1.0+beta'
make: *** [all] Error 2
Does any one know how to fix this?
User avatar
Agoln
Posts: 326
Joined: Wed Jun 08, 2005 3:14 am
Location: Fort Wayne, IN

Post by Agoln »

you are somehow missing your sh (shell). I'm not sure how you did this, but I would recommend re-installing cygwin.
Lego of my Ago!
gadget
Posts: 5
Joined: Sat Jul 09, 2005 12:54 pm
Contact:

Re: PSPSDK install error

Post by gadget »

BlackIce wrote:Well i am following this tutorial: http://psp.amazingspringthing.com/tutor ... lchain.php
I got to the part where you type "make" in the pspsdk-1.0+beta folder.

This is the error i get

Code: Select all

Sean1@COMP ~/pspsdk-1.0+beta
$ make
make  all-recursive
make[1]: Entering directory `/home/Sean1/pspsdk-1.0+beta'
Making all in sdk
make[2]: Entering directory `/home/Sean1/pspsdk-1.0+beta/sdk'
Making all in audio
make[3]: Entering directory `/home/Sean1/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/Sean1/pspsdk-1.0+beta/sdk/audio'
make[2]: *** [all-recursive] Error 1
make[2]: Leaving directory `/home/Sean1/pspsdk-1.0+beta/sdk'
make[1]: *** [all-recursive] Error 1
make[1]: Leaving directory `/home/Sean1/pspsdk-1.0+beta'
make: *** [all] Error 2
Does any one know how to fix this?
I ran into this last night. The line
/bin/sh: no: command not found is because it couldn't find the path to your compiler. Check the config.log file and look for any errors. You'll probably see that CC = no.
BlackIce
Posts: 3
Joined: Sat Jul 09, 2005 12:34 pm

Post by BlackIce »

Found it but CC=gcc

Edit: thanks for telling me about the config.log.
I found out that my path to the pspdev folder was actually screwed up.
I got it to work. :)
Last edited by BlackIce on Sat Jul 09, 2005 1:18 pm, edited 1 time in total.
User avatar
Agoln
Posts: 326
Joined: Wed Jun 08, 2005 3:14 am
Location: Fort Wayne, IN

Post by Agoln »

my bad... didn't see the 'no'.

Did you install gcc when you installed cygwin?
Lego of my Ago!
dingofr
Posts: 3
Joined: Fri May 06, 2005 11:10 pm

Post by dingofr »

Hi,

need some help.
running the toolchain.sh script ends with these errors (pspsdk part I guess) :

./bootstrap: line 81: aclocal: command not found
./bootstrap: line 83: autoheader: command not found
./bootstrap: line 84: automake: command not found
./bootstrap: line 86: autoconf: command not found
grep: Makefile.in: No such file or directory
cat: configure: No such file or directory
./toolchain.sh: line 296: ./configure: Permission denied
ERROR RUNNING PSPSDK CONFIGURE

how can I install pspsdk via subversion ?
ooPo
Site Admin
Posts: 2023
Joined: Sat Jan 17, 2004 9:56 am
Location: Canada
Contact:

Post by ooPo »

Install autoconf and automake.
gadget
Posts: 5
Joined: Sat Jul 09, 2005 12:54 pm
Contact:

Post by gadget »

Cygwin is the hardest thing to get going. The setup program is so counter intuitive to work with. Just a suggestion, once you get a cygwin install working, back up the directory :)
dingofr
Posts: 3
Joined: Fri May 06, 2005 11:10 pm

Post by dingofr »

ooPo wrote:Install autoconf and automake.
you're right, I should have figured it out myself :p

thx, it works great now... Finally got the toolchain+sdk installed.
Time for some little (useless) code :)

BlackIce, I'm following your advice ;)
Post Reply