Wiki

Clone wiki

unrealspeccyp / build_psp

Building Sony PSP version

Using Linux (x86-64)

Download PSP SDK to your home dir & unpack it:

#!bash
cd ~
wget http://downloads.sourceforge.net/project/minpspw/SDK%20%2B%20devpak/pspsdk%200.11.2/minpspw_0.11.2-amd64.tar.lzma
tar Jxvf minpspw_0.11.2-amd64.tar.lzma --strip=2

Prepare environment:

#!bash
export PATH=~/pspsdk/bin:${PATH}

Clone source code & build it:

#!bash
git clone https://bitbucket.org/djdron/unrealspeccyp.git usp
cd usp/build/psp
make

After successfull build EBOOT.PBP will be placed in Release folder.

Updated