Difference between revisions of "Compiling ScummVM/Docker"

From ScummVM :: Wiki
Jump to navigation Jump to search
Line 1: Line 1:
{| border="0" cellpadding="1" cellspacing="2" style="margin-left:5em; background:#FF9999; width:80%"
|- align="center"
| '''NOTE'''
|- style="margin-left:1em; background:#ffffff;"
|- style="background:#ffffff"
| This page is still a draft, and lacks a lot of detail.
|}
== Compiling ScummVM using Docker ==
== Compiling ScummVM using Docker ==
The ScummVM buildbot uses [https://www.docker.com/ Docker] for building the toolchains. As such, this makes it possible for the individual toolchains to be used for local builds, avoiding the need to install the toolchain and required libraries manually.
The ScummVM buildbot uses [https://www.docker.com/ Docker] for building the toolchains. As such, this makes it possible for the individual toolchains to be used for local builds, avoiding the need to install the toolchain and required libraries manually.

Revision as of 16:42, 14 April 2021

Compiling ScummVM using Docker

The ScummVM buildbot uses Docker for building the toolchains. As such, this makes it possible for the individual toolchains to be used for local builds, avoiding the need to install the toolchain and required libraries manually.

The following toolchain images are available:

Name Target platform Notes
toolchains/amigaos4 AmigaOS 4
toolchains/android Android for ARMv7, AArch64, x86 and x86_64
toolchains/caanoo Caanoo
toolchains/devkit3ds Nintendo 3DS
toolchains/devkitnds Nintendo DS
toolchains/devkitppc Nintendo Wii and GameCube
toolchains/devkitswitch Nintendo Switch
toolchains/dreamcast Dreamcast
toolchains/gcw0 GCW Zero
toolchains/iphone iOS 7 for AArch64 Requires building the image from source.
toolchains/macosx-arm64 macOS for AArch64 Requires building the image from source.
toolchains/macosx-i386 macOS for x86 Requires building the image from source.
toolchains/macosx-x86_64 macOS for x86_64 Requires building the image from source.
toolchains/mxe Windows for x86 and x86_64
toolchains/open2x GP2X
toolchains/opendingux Dingux
toolchains/openpandora OpenPandora
toolchains/ps3 PlayStation 3
toolchains/psp PlayStation Portable
toolchains/raspberrypi Raspberry Pi
toolchains/riscos RISC OS
toolchains/vita PlayStation Vita

Installing the needed packages

Debian-based distributions

The following should install all the necessary packages:

apt-get install docker.io git make m4 acl

Getting the source

  • Open a Terminal and type:
git clone https://github.com/scummvm/scummvm.git
git clone https://github.com/scummvm/dockerized-bb.git

Getting the docker images

To fetch a toolchain image from the Docker Hub, issue the following command inside the dockerized-bb folder:

make <toolchain>/pull

where <toolchain> is the name of the toolchain you want to use. The following command can be used to fetch all toolchains at once:

make pull-toolchains

Using the docker images

To fetch a toolchain image from the Docker Hub, issue the following command:

docker run -v <path-to-scummvm>:/data/scummvm -w /data/scummvm -it <toolchain> /bin/bash

where <toolchain> is the name of the toolchain you want to use, and <path-to-scummvm> is the path to the scummvm folder. This will mount the scummvm folder in the Docker image and launch a shell that can be used to build ScummVM for the relevant platform. Once done, the exit command can be used to leave the Docker image.

For more details on how to build ScummVM for a given platform, see the relevant page from Compiling ScummVM.