Dockerfile for AmigaOS Cross-Compiler Toolchain
Go to file
Sebastian Bergmann 06fff27330
Update FUNDING.yml
2019-10-23 11:04:20 +02:00
.github Update FUNDING.yml 2019-10-23 11:04:20 +02:00
bin Bump 2019-10-14 18:26:36 +02:00
test Simplify 2019-08-30 12:12:21 +02:00
.dockerignore Minimize build context 2019-08-27 13:59:01 +02:00
.gitignore Simplify 2019-08-30 12:12:21 +02:00
Dockerfile Refactor 2019-08-30 12:27:20 +02:00
README.md Initial commit 2018-03-29 09:57:03 +02:00
build.xml Simplify 2019-08-30 12:12:21 +02:00
screenshot.png Initial commit 2018-03-29 09:57:03 +02:00

README.md

Dockerfile for AmigaOS Cross-Compiler Toolchain

Dockerfile for Stefan "Bebbo" Franke's amiga-gcc toolchain for Linux/AmigaOS cross-development.

A ready-to-use image built from this Dockerfile is available on Docker Hub.

"Hello world!" Example

AmigaOS C API

hello.c from Radosław Kujawa:

#include <proto/exec.h>
#include <proto/dos.h>

int main(int argc, void *argv[])
{
    struct Library *SysBase;
    struct Library *DOSBase;

    SysBase = *((struct Library **)4UL);
    DOSBase = OpenLibrary("dos.library", 0);

    if (DOSBase) {
        Write(Output(), "Hello world!\n", 13);
        CloseLibrary(DOSBase);
    }

    return(0);
}

Standard C Library

hello.c from Radosław Kujawa:

#include <stdio.h>

int main()
{
    printf("Hello world!\n");

    return(0);
}

Compilation

$ docker run -v $HOME:/host -it sebastianbergmann/amiga-gcc \
  m68k-amigaos-gcc /host/hello.c -o /host/hello -noixemul

Execution

Docker-ized Emulation using FS-UAE

The docker-execute-amiga script used below can be downloaded from here.

$ docker-execute-amiga helloworld

Screenshot

Docker-ized Emulation using Virtual AmigaOS (vamos)

$ docker run -v $HOME:/host sebastianbergmann/amitools:latest \
  vamos -C 68020 /host/hello
Hello world!