Toolchain: Add Qemu build dependencies to Dockerfile

Also add `libsdl2-dev` as a required dependency and reorder the
list of packages passed to `apt-get`.
This commit is contained in:
Jelle Raaijmakers 2021-11-17 00:57:51 +01:00 committed by Linus Groh
parent b7bf1a4330
commit 8744086781
2 changed files with 8 additions and 4 deletions

View file

@ -30,7 +30,7 @@ QEMU version 5 is available in Ubuntu 20.10, but it is recommended to build Qemu
Note that you might need additional dev packages:
```console
sudo apt install libgtk-3-dev libpixman-1-dev libspice-server-dev
sudo apt install libgtk-3-dev libpixman-1-dev libsdl2-dev libspice-server-dev
```
### Windows

View file

@ -10,14 +10,18 @@ RUN apt-get update -y \
curl \
g++-10 \
gcc-10 \
e2fsprogs \
genext2fs \
gettext \
git \
imagemagick \
libmpfr-dev \
libmpc-dev \
libgmp-dev \
e2fsprogs \
libgtk-3-dev \
libmpc-dev \
libmpfr-dev \
libpixman-1-dev \
libsdl2-dev \
libspice-server-dev \
ninja-build \
qemu-utils \
rsync \