PDA

View Full Version : Linux PSP IDE



3.40.Newbie
September 24th, 2007, 02:41
Hi Guys,

Is there a Linux IDE for the PSP ? Could someone point me in the right directions ?

TIA,
NB

yaustar
September 24th, 2007, 11:09
Just use any of the existing IDEs. Code::Blocks, Anjunta, Vi, Emacs.

All of them should support makefile projects.

3.40.Newbie
October 2nd, 2007, 02:18
I probably phrased this question wrong. What I am looking for is a way to compile code for the PSP on a linux box. I am pretty new to C programming and PSP programming but I want to be able to code and compile on linux ? Can someone recommend some links to help me get started ?

yaustar
October 2nd, 2007, 10:08
My last answer still applies. Talk to the guys at PSP-Programming, they should help you get the toolchain setup on a *nix box which is what I am assuming you are having trouble with.

If you are new to programming, then learn the language first on a PC platform before moving to other hardware otherwise you are on a VERY steep and slippery learning curve.

SpooForBrains
October 2nd, 2007, 11:58
This page (http://www.lan.sh/showthread.php?t=806&highlight=ps2dev) is what I used. Here it is broken down into steps. You'll need subversion installed.

cd && mkdir pspdev && cd pspdev
svn co svn://svn.ps2dev.org/psp/trunk/psptoolchain
cd psptoolchain
./toolchain.sh
cd .. && printf 'export PSPDEV="/usr/local/pspdev"\nexport PATH="$PATH:$PSPDEV/bin"' >> /etc/profile
svn co svn://svn.ps2dev.org/psp/trunk/pspsdk && cd pspsdk
./bootstrap
./configure && make && make install && cd ..