Skip to content

Building a screamer fork of qemu that supports sound for PPC systems

Notifications You must be signed in to change notification settings

rhizomedotorg/qemu-ppc-screamer

Repository files navigation

Building qemu screamer on Ubuntu 22.04

How to build the qemu screamer branch on Ubuntu 22.04, as of 2023-05-04

1. Install all required packages

./install-packages.sh

2. Check out the source repository

git clone -b screamer https://github.com/mcayland/qemu qemu-screamer

3. Configure

This will only build the PPC part of the emulator and support only pulse audio.

cd qemu-screamer
./configure --target-list="ppc-softmmu" --enable-gtk --enable-sdl --audio-drv-list="pa" --enable-vde

make
cd build

4. Compile

Compilation will use all available processor cores to be quick.

make -j $(nproc)

Optional: remove debugging symbols from the resulting binary to save some disk space.

strip build/qemu-system-ppc

Your new executable...

...can be found in qemu-screamer/build/qemu-system-ppc

About

Building a screamer fork of qemu that supports sound for PPC systems

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages