A Docker Image for PSP Development with SDL2
1.2K
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.
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.
Content type
Image
Digest
sha256:2b5dbbf83…
Size
309.3 MB
Last updated
over 2 years ago
docker pull hldtux/pspdev-sdl2