Hi,
The other day I was looking into PS2 development again. My first goal was to get one of my PS2 projects (PS2rd) compiled after a couple of years of neglect.
I decided to use Docker for isolated cross-compiling and built something others might find useful too:
https://github.com/mlafeldt/docker-ps2dev
This project allows me to build PS2rd (or any other PS2 project) with a single command on any platform that supports Docker:
In addition, I can now also set up continuous integration using services such as Travis CI, so that my code gets tested and built every time I push something to GitHub.
Check out the README (https://github.com/mlafeldt/docker-ps2dev#readme) for more information.
The other day I was looking into PS2 development again. My first goal was to get one of my PS2 projects (PS2rd) compiled after a couple of years of neglect.
I decided to use Docker for isolated cross-compiling and built something others might find useful too:
https://github.com/mlafeldt/docker-ps2dev
This project allows me to build PS2rd (or any other PS2 project) with a single command on any platform that supports Docker:
docker run -it --rm -v "$PWD:/src" mlafeldt/ps2dev make
Check out the README (https://github.com/mlafeldt/docker-ps2dev#readme) for more information.
Comment