Building and installing
1. Install the toolchain and have $PS2SDK exported.
2. git clone https://github.com/ps2dev/ps2sdk
3. cd ps2sdk
4. export PS2SDKSRC=$PWD
5. make clean
6. make
7. make install
Note: ensure that you have the necessary priviledges before executing make install.
Upgrading
1. Get an updated copy of the PS2SDK:
i. If you have not cloned a copy before:
a. git clone https://github.com/ps2dev/ps2sdk
b. cd ps2sdk
ii. If you alread have a copy:
a. cd ps2sdk
b. git pull
2. export PS2SDKSRC=$PWD
3. make clean
4. make
5. make install
Note: ensure that you have the necessary priviledges before executing make install.
Binary Release Structure
A binary release of PS2SDK will include the following directories:
sdk/ee/include: EE include files.
sdk/ee/lib: EE library files.
sdk/ee/startup: Example crt0.o and linkfile. https://github.com/ps2dev/ps2sdk/wiki
2/42021/1/16
Home · ps2dev/ps2sdk Wiki · GitHub
sdk/iop/include: IOP include files.
sdk/iop/irx: IOP loadable modules.
sdk/common/include: Common include files between the EE and IOP.
sdk/samples: Samples for both EE and IOP.
sdk/tools: Tools used during development on the host PC.