Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/thiago4532/minix-build
A dockerfile to cross-compile x86 MINIX 3
https://github.com/thiago4532/minix-build
Last synced: 1 day ago
JSON representation
A dockerfile to cross-compile x86 MINIX 3
- Host: GitHub
- URL: https://github.com/thiago4532/minix-build
- Owner: Thiago4532
- License: unlicense
- Created: 2024-03-22T03:00:43.000Z (10 months ago)
- Default Branch: main
- Last Pushed: 2024-03-22T03:23:29.000Z (10 months ago)
- Last Synced: 2024-11-10T12:05:43.806Z (about 2 months ago)
- Language: Shell
- Size: 2.93 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Instructions
You can build MINIX by running the following command while in the root directory of a Minix3 checkout:
```sh
docker run --rm -it -v $PWD:/home/minix/src thiago4532/minix-build:i386
```You can also use the env JOBS to specify the number of parallel jobs. For example, using 16 jobs:
```sh
docker run --rm -it -v $PWD:/home/minix/src -e JOBS=16 thiago4532/minix-build:i386
```This command creates a build/ folder inside the source folder, you can find the
building result in build/dest.Also you may need to apply [this](https://github.com/Stichting-MINIX-Research-Foundation/minix/pull/301) patch to your source code before compiling it.
[DockerHub](https://hub.docker.com/r/thiago4532/minix-build/tags)