You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
A collection of AmigaOS tools designed to bridge the gap between the Amiberry emulator and the host operating system (Linux, macOS, etc.).
@@ -84,17 +89,24 @@ Make AmigaOS automatically open `.mkv` files on the host:
84
89
85
90
## Building
86
91
87
-
This project is built using **GitHub Actions**. Every push to `master` or a version tag triggers a build using the `amigadev/crosstools:m68k-amigaos` Docker image.
92
+
This project is built using **GitHub Actions**. Every push to `master` or a version tag triggers a build using the `sacredbanana/amiga-compiler:m68k-amigaos` Docker image.
88
93
89
94
To build locally (requires the m68k-amigaos cross-compiler):
90
95
```shell
91
96
make all
92
97
```
93
98
99
+
To build locally with the same Docker image used by CI:
100
+
```shell
101
+
docker run --rm -v "$PWD":/work -w /work sacredbanana/amiga-compiler:m68k-amigaos make all
102
+
```
103
+
94
104
To build with debug output enabled:
95
105
```shell
96
106
make debug
97
107
```
98
108
99
109
## License
100
-
GPLv3
110
+
Copyright (C) 2020-2026 Dimitris Panokostas.
111
+
112
+
Amiberry Host Tools is licensed under the GNU General Public License version 3 or later. See [LICENSE](LICENSE) for details.
0 commit comments