Build environment for RISC OS components
8.1K
A full manual with installation and usage instructions can be found here: https://robe.riscos.online/
The cross-compiling environment for RISC OS provides a way use RISC OS tools on non-RISC OS systems.
The intention is that the cross compiling tools work exactly as they would on RISC OS, taking RISC OS filenames, and producing RISC OS-specific files. This means that:
. directory separators.,xxx syntax.$ replaced by _. The variables should hold native paths, not RISC OS paths, however._PATH suffix is omitted; ie the environment variable C would be used to expand C:o.stubs.The easiest way to install the tools with the Docker container is to
run the installation script, supplying a directory which is listed
within the PATH, like this:
mkdir INSTALL_DIR
docker run --rm -v INSTALL_DIR:/riscos-built -e UID=$(id -u) gerph/riscos-build:VERSION install
For example, to install the latest version into /usr/local/bin you would use:
docker run --rm -v /usr/local/bin:/riscos-built -e UID=$(id -u) gerph/riscos-build:latest install
or to include the 64-bit tooling, use:
docker run --rm -v /usr/local/bin:/riscos-built -e UID=$(id -u) gerph/riscos-build:latest-64bit install
Once installed in this way, the tools can be invoked in the host system and will run within a Docker container.
Full help can be displayed with:
riscos-shell help
Content type
Image
Digest
sha256:419da325a…
Size
202.8 MB
Last updated
3 months ago
docker pull gerph/riscos-build