QJ.NET | Videos | Forums | iPhone | MMORPG | Nintendo DS | Wii | PlayStation 3 | PSP | Xbox 360 | PC | Downloads | Contact Us
Forums | Gaming News | Videos | Downloads | Today's Posts | Mark Forums Read | Chat | FAQ | Members List | Contact

QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides

Go Back   QJ.net Game Discussion - PSP, Xbox, Wii, PS3, PSP Homebrew, and PSP Guides > Developers Corner > PSP Development, Hacks, and Homebrew > PSP Development Forum
The above video goes away if you are a member and logged in, so log in now!

location of pspsdk?

This is a discussion on location of pspsdk? within the PSP Development Forum forums, part of the PSP Development, Hacks, and Homebrew category; $ make install make: psp-config: Command not found make: psp-config: Command not found /lib/build.mak:15: *** $(PSPSDK) is undefined. Use "PSPSDK ...

Reply
 
LinkBack Thread Tools
Old 07-23-2006, 05:42 PM   #1

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default location of pspsdk?

$ make install
make: psp-config: Command not found
make: psp-config: Command not found
/lib/build.mak:15: *** $(PSPSDK) is undefined. Use "PSPSDK := $(shell psp-confi
g --pspsdk-path)" in your Makefile. Stop.


so where and how do i define where the pspsdk is? in build.mak or in the makefile?
__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 05:53 PM   #2
 
MasterChief1234's Avatar
 
Join Date: Aug 2005
Location: Inside my PSP
Posts: 863
Trader Feedback: 0
Default

Run this command:
Quote:
export PATH="/usr/local/pspdev/bin:$PATH"
then add it to your login settings. (usually .bash_profile)
__________________
[url=http://folding.stanford.edu/][IMG]http://my.livecard.net/xbox10/he4dstr0ng887.png[/IMG][/url]
[QUOTE=Kyle0wnsYou][SIZE="2"][I]Kashi sucks. and their cereal makes you s#!% like you had an enema fit for an elephant.[/I][/SIZE][/QUOTE]
MasterChief1234 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 06:04 PM   #3

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default

where exactly in .bash_profile?

Double Post Merge

and my .bash_profile is different for some reason

# base-files version 3.7-1

# To pick up the latest recommended .bash_profile content,
# look in /etc/defaults/etc/skel/.bash_profile

# Modifying /etc/skel/.bash_profile directly will prevent
# setup from updating it.

# The copy in your home directory (~/.bash_profile) is yours, please
# feel free to customise it to create a shell
# environment to your liking. If you feel a change
# would be benifitial to all, please feel free to send
# a patch to the cygwin mailing list.

# ~/.bash_profile: executed by bash for login shells.

# source the system wide bashrc if it exists
if [ -e /etc/bash.bashrc ] ; then
source /etc/bash.bashrc
fi

# source the users bashrc if it exists
if [ -e "${HOME}/.bashrc" ] ; then
source "${HOME}/.bashrc"
fi

# Set PATH so it includes user's private bin if it exists
# if [ -d "${HOME}/bin" ] ; then
# PATH=${HOME}/bin:${PATH}
# fi

# Set MANPATH so it includes users' private man if it exists
# if [ -d "${HOME}/man" ]; then
# MANPATH=${HOME}/man:${MANPATH}
# fi

# Set INFOPATH so it includes users' private info if it exists
# if [ -d "${HOME}/info" ]; then
# INFOPATH=${HOME}/info:${INFOPATH}
# fi

__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 06:11 PM   #4
 
MasterChief1234's Avatar
 
Join Date: Aug 2005
Location: Inside my PSP
Posts: 863
Trader Feedback: 0
Default

Quote:
Originally Posted by BAWLS
where exactly in .bash_profile?

Double Post Merge

and my .bash_profile is different for some reason

# base-files version 3.7-1

# To pick up the latest recommended .bash_profile content,
# look in /etc/defaults/etc/skel/.bash_profile

# Modifying /etc/skel/.bash_profile directly will prevent
# setup from updating it.

# The copy in your home directory (~/.bash_profile) is yours, please
# feel free to customise it to create a shell
# environment to your liking. If you feel a change
# would be benifitial to all, please feel free to send
# a patch to the cygwin mailing list.

# ~/.bash_profile: executed by bash for login shells.

# source the system wide bashrc if it exists
if [ -e /etc/bash.bashrc ] ; then
source /etc/bash.bashrc
fi

# source the users bashrc if it exists
if [ -e "${HOME}/.bashrc" ] ; then
source "${HOME}/.bashrc"
fi

# Set PATH so it includes user's private bin if it exists
# if [ -d "${HOME}/bin" ] ; then
# PATH=${HOME}/bin:${PATH}
# fi

# Set MANPATH so it includes users' private man if it exists
# if [ -d "${HOME}/man" ]; then
# MANPATH=${HOME}/man:${MANPATH}
# fi

# Set INFOPATH so it includes users' private info if it exists
# if [ -d "${HOME}/info" ]; then
# INFOPATH=${HOME}/info:${INFOPATH}
# fi

Just go to the bottom on a new line and add it there.
__________________
[url=http://folding.stanford.edu/][IMG]http://my.livecard.net/xbox10/he4dstr0ng887.png[/IMG][/url]
[QUOTE=Kyle0wnsYou][SIZE="2"][I]Kashi sucks. and their cereal makes you s#!% like you had an enema fit for an elephant.[/I][/SIZE][/QUOTE]
MasterChief1234 is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 06:57 PM   #5

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default

can anyone provide a fix?
__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 07:03 PM   #6

Developer
 
jsharrad's Avatar
 
Join Date: Oct 2005
Real First Name: Justin
Location: Dubuque
Just Played: ..
Posts: 414
Trader Feedback: 0
Default

Just add this to the bottom of your .bash_profile in your home directory:
Code:
export PSPSDK=/usr/local/pspdev
export PATH=$PATH:/usr/local/pspdev/bin
__________________
PSP Demo Videos (updated 11/29/08)
MinerPSP Coder
jsharrad is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 07:16 PM   #7

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default

/me beats head against wall ><

not working

its been 6 days now since ive started installing cygwin and toolchain
__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 07:53 PM   #8

Developer
 
jsharrad's Avatar
 
Join Date: Oct 2005
Real First Name: Justin
Location: Dubuque
Just Played: ..
Posts: 414
Trader Feedback: 0
Default

Oops, forgot to tell you that you had to also type those commands at the prompt unless you log out and back into cygwin again easier to just close it and reload it.
__________________
PSP Demo Videos (updated 11/29/08)
MinerPSP Coder
jsharrad is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 07:56 PM   #9

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default

>< Nothing Ashhhhhhhhhhhh Im Pulling My Hair Out. I Just Wanna ****in Compile My Damn Eboot And ****
__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 08:05 PM   #10
 
Join Date: Sep 2005
Location: meh
Posts: 2,799
Trader Feedback: 0
Default

you know, it's just darwinism at work...

you're incapable of anything notable.
cyanide is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 08:09 PM   #11

total-Z
 
youresam's Avatar
 
Join Date: Jul 2005
Location: texas
Posts: 2,803
Trader Feedback: 0
Default

I think you forgot to edit the cygwin.bat
__________________
牧来栠摩琠敨映汩獥
PSN: youresam
From Earth the Frozen Ipaqs shall rise and be silenced and all will live free.
--Mike Hollingsworth
youresam is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-23-2006, 08:10 PM   #12

Developer
 
jsharrad's Avatar
 
Join Date: Oct 2005
Real First Name: Justin
Location: Dubuque
Just Played: ..
Posts: 414
Trader Feedback: 0
Default

type these at the prompt and paste me the output...
Code:
set | grep -i PSPSDK
set | grep -i PATH
__________________
PSP Demo Videos (updated 11/29/08)
MinerPSP Coder
jsharrad is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 07-24-2006, 06:06 AM   #13

Mindless Self Indulgence
 
Realn0whereman's Avatar
 
Join Date: Oct 2005
Location: afk
Posts: 7,212
Trader Feedback: 0
Default

$set | grep -i PSPSDK
PSPSDK=/usr/local/pspdev


$ set | grep -i PATH
CLASSPATH='.;C:\Program Files\Java\jre1.5.0_06\li b\ext\QTJava.zip'
HOMEPATH='\Documents and Settings\Trainstroker'
INFOPATH=/usr/local/info:/usr/share/info:/usr/info:
MANPATH=/usr/local/man:/usr/share/man:/usr/man::/usr/ssl/man
PATH='/usr/local/bin:/usr/bin:/bin:/usr/X11R6/bin:/cygdrive/c/WINDOWS/system32:/
cygdrive/c/WINDOWS:/cygdrive/c/WINDOWS/system32/WBEM:/cygdrive/c/Program Files/Q
uickTime/QTSystem/:/cygdrive/c/Program Files/ATI Technologies/ATI.ACE/:/usr/loca
l/pspdev/bin:/usr/local/pspdev/bin'
PATHEXT='.COM;.EXE;.BAT;. CMD;.VBS;.VBE;.JS;.JSE;.W SF;.WSH'
PKG_CONFIG_PATH=/usr/X11R6/lib/pkgconfig




btw i set PSPSDK as an enviormental value for my system and thats what the first location is

Double Post Merge

should i dualboot linux to develop? would it be easier
__________________
PSN:realn0whereman
NEW MSI ALBUM APRIL 29TH: IF
*orgasm*

Last edited by BAWLS; 07-24-2006 at 03:42 AM..
Realn0whereman is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Tags
location , pspsdk

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -8. The time now is 12:45 PM.



Use of this Web site constitutes acceptance of the TERMS & CONDITIONS and PRIVACY POLICY
Copyright © 2009, QJ.NET. All Rights Reserved.
Contact Us