• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1
2SDL on Sony Playstation3
3------------------------
4
5Installation:
6  First, you have to install the Cell SDK
7  - Download the Cell SDK installer RPM and ISO images to
8    a temporary directory such as /tmp/cellsdk.
9  - Mount the image: mount -o loop CellSDK-Devel-Fedora_3.1.0.0.0.iso /tmp/cellsdk
10  - Install the SDK installer: rpm -ivh cell-install-3.1.0-0.0.noarch.rpm
11  - Install the SDK: cd /opt/cell && ./cellsdk --iso /tmp/cellsdkiso install
12
13  You need to install the SPU-libs before installing SDL
14  - Go to SDL-1.2/src/video/ps3/spulibs/
15  - Run make && make install
16
17  Finally, install SDL
18  - Go to SDL-1.2/ and build SDL like any other GNU style package.
19  e.g.
20    - Build the configure-script with ./autogen.sh
21    - Configure SDL for your needs: ./configure --enable-video-ps3 ...
22    - Build and install it: make && make install
23
24
25Todo:
26  - mouse/keyboard/controller support
27
28Have fun!
29  Dirk Herrendoerfer <d.herrendoerfer [at] de [dot ibm [dot] com>
30