Sign inSign up

hldtux/pspdev-sdl2

By hldtux

Updated over 2 years ago

A Docker Image for PSP Development with SDL2

Image
0

1.2K

hldtux/pspdev-sdl2 repository overview

ci-docker

Simple example to compile PSP apps using SDL2

This uses docker to automate the setup of pspdev toolchain. A prebuilt version of the image exists at hldtux/pspdev-sdl2:latest, but it can also be ran locally with the following commands.

A Docker Image for PSP Development

export DOCKER_DEFAULT_PLATFORM=linux/amd64
docker build -t psp:local .
docker run -it --rm -v $PWD:/src/ psp:local

or from dockerhub

DOCKER_DEFAULT_PLATFORM=linux/amd64 \
docker run -it --rm -v $PWD:/src/ hldtux/pspdev-sdl2

This drops into a terminal inside the container. Run

mkdir build && cd build
psp-cmake ..
make

to create the EBOOT.PBP file. TO run this on a PSP copy it to a folder inside /GAME.

Tag summary

Content type

Image

Digest

sha256:2b5dbbf83

Size

309.3 MB

Last updated

over 2 years ago

docker pull hldtux/pspdev-sdl2