PSP 이야기
$PSPDEV on ubuntu
유그
2009. 5. 14. 14:23
To set $PSPDEV on Ubuntu, ignore everything everybody has told you to
do as nothing they've said does what you're originally asking.
Instead, type this in your console:
Why This Works:
echo is a program that outputs text to stdout.
>> redirects stdout to a place of your choosing. (/dev/null is always fun)
~/.bashrc is a shell script that executes upon starting bash.
export is a program that sets an environment variable.
PSPDEV is the environment variable we want to set.
/usr/local/pspdev is the folder we want to set to our environment variable.
By combining this knowledge, we are simply adding the line "export PSPDEV=/usr/local/pspdev" to ~/.bashrc. Simple, isn't it?
Now, learn more about your TTY before using it, please.
Instead, type this in your console:
Code:
echo export PSPDEV=/usr/local/pspdev >> ~/.bashrc
Why This Works:
echo is a program that outputs text to stdout.
>> redirects stdout to a place of your choosing. (/dev/null is always fun)
~/.bashrc is a shell script that executes upon starting bash.
export is a program that sets an environment variable.
PSPDEV is the environment variable we want to set.
/usr/local/pspdev is the folder we want to set to our environment variable.
By combining this knowledge, we are simply adding the line "export PSPDEV=/usr/local/pspdev" to ~/.bashrc. Simple, isn't it?
Now, learn more about your TTY before using it, please.
http://ps2dev.org/psp/Tools/Toolchain/psptoolchain-20070626.tar.bz2
http://ps2dev.org/psp/Projects/PSPSDK
http://quox.org/install/cross/cross-binutils-2.16.1.html
http://ftp.gnu.org/gnu/binutils/
http://www.guztech.nl/index.php?option=com_content&view=article&id=49:setting-up-the-psptoolchain&catid=38:psp&Itemid=56
http://forums.ps2dev.org/viewtopic.php?t=11376
http://ps2dev.org/psp/Projects/PSPSDK
http://quox.org/install/cross/cross-binutils-2.16.1.html
http://ftp.gnu.org/gnu/binutils/
http://www.guztech.nl/index.php?option=com_content&view=article&id=49:setting-up-the-psptoolchain&catid=38:psp&Itemid=56
http://forums.ps2dev.org/viewtopic.php?t=11376