Last known version: 3.1.0 1
First known version: 0.3.0 2
Updates were provided to licenced playstation developers on ps2-pro.com, where the update contained just the files that have changed and could be dropped in place to overwrite the previous versions.
You are really just looking for a string of the form “PSII* 2720” where the * denotes text that can change based on which library you search.
You can search for Games that match a specific SDK version by running the following bash command:
find . -name "MCMAN.IRX" -print0 | xargs -0 strings | grep -Hn " 272"
Replace 2720 with the version number you want, e.g 272 is 2.7.2
By default the 64-bit version of ubuntu does come with the 32bit libraries that the SDK binaries have been linked to. So when you try to run any of the binaries it gives an error such as:
iop-gcc: command not found
In order to fix this you need to run the following commands:
sudo apt-get update; sudo apt-get upgrade; sudo apt-get install ia32-libs
sudo dpkg --add-architecture i386
sudo apt-get update
sudo apt-get install lib32z1
The Emotion Engine Toolchain was developed by Cygnus based on GNUPro and has support for running the toolchain on windows, linux and Solaris.
One important point is that generating debug symbols doesn’t ever modify the code generation but there are some optimisation flags that can make debugging more difficult.
The simulator was released before developers got access to the hardware 3, it is basically an emulator which virtualizes the hardware of the emotion engine on a standard pc. This emulator was not cycle-accurate so was not guaranteed to produce the same result as running on the physical hardware.