https://github.com/ziglang/qemu-static
build qemu-static binaries using Alpine Linux docker
https://github.com/ziglang/qemu-static
Last synced: 3 months ago
JSON representation
build qemu-static binaries using Alpine Linux docker
- Host: GitHub
- URL: https://github.com/ziglang/qemu-static
- Owner: ziglang
- License: mit
- Created: 2020-04-10T07:34:57.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2024-12-16T17:03:31.000Z (7 months ago)
- Last Synced: 2025-03-15T04:03:32.985Z (4 months ago)
- Language: Shell
- Homepage:
- Size: 35.2 KB
- Stars: 41
- Watchers: 7
- Forks: 22
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# qemu-static
The purpose of this project is to build a highly compatible linux QEMU binary
package for Zig CI testing.Zig requires a very recent QEMU version, sometimes unreleased commit-revs, and
sometimes with custom patches. For this reason, distro-based QEMU packages are
unsuitable.The overall strategy is to use Alpine Linux to host a QEMU build and link
statically to all possible libraries.It is a non-goal to build QEMU with all features enabled.
It is a non-goal to build QEMU with system emulation enabled.
It is a non-goal to build older versions of QEMU.## build docker image
```
docker build --tag qemu .
```## run container, save ID, copy artifact(s)
```
mkdir ../artifact
docker run -it --cidfile=qemu.cid qemu true
docker cp "$(cat qemu.cid):work/artifact/." ../artifact/.
```## review final artifact(s)
```
ls -al ../artifact/
```## cleanup container, ID-file, and image
```
docker container rm $(cat qemu.cid)
rm qemu.cid
docker image rm qemu
```## really, really cleanup docker
```
docker system prune --force
```