Sign inSign up

einsteinx2/ps3dev-tiny3d

By einsteinx2

Updated about 7 years ago

https://github.com/einsteinx2/docker-ps3dev-tiny3d

Image
0

951

einsteinx2/ps3dev-tiny3d repository overview

Self-contained PS3 homebrew development environment based off of mlafeldt/ps3dev with the tiny3D library added.

A Docker Image for PS3 Development

Cross-compile your PS3 homebrew projects inside a Docker container based on ps3toolchain.

Quick Start

Run this command in your project's root folder to build it inside a Docker container:

docker run -it --rm -v "$PWD:/src" einsteinx2/ps3dev-tiny3d make

This will mount the current folder to /src in the container and then run make inside /src. You may execute other commands, of course.

Omit the command to get a login shell (/bin/bash) in the running container:

docker run -it --rm -v "$PWD:/src" einsteinx2/ps3dev-tiny3d

For a working example, use the Docker image to build the PSL1GHT samples.

Continuous Integration

With the Docker image in hand, you can also build and test your PS3 applications on CI platforms. Here's an example configuration for Travis CI:

# .travis.yml
language: c

sudo: required

services:
  - docker

script: docker run -it --rm -v "$PWD:/src" einsteinx2/ps3dev-tiny3d make test

Author

This project is being developed by Mathias Lafeldt.

He also created a Docker image for PS2 development.

I just added tiny3D to his image

Tag summary

Content type

Image

Digest

Size

467.5 MB

Last updated

about 7 years ago

docker pull einsteinx2/ps3dev-tiny3d