mirror of
https://github.com/SerenityOS/serenity
synced 2024-11-03 03:29:38 +00:00
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:
parent
b7bf1a4330
commit
8744086781
2 changed files with 8 additions and 4 deletions
|
@ -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:
|
Note that you might need additional dev packages:
|
||||||
|
|
||||||
```console
|
```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
|
### Windows
|
||||||
|
|
|
@ -10,14 +10,18 @@ RUN apt-get update -y \
|
||||||
curl \
|
curl \
|
||||||
g++-10 \
|
g++-10 \
|
||||||
gcc-10 \
|
gcc-10 \
|
||||||
|
e2fsprogs \
|
||||||
genext2fs \
|
genext2fs \
|
||||||
gettext \
|
gettext \
|
||||||
git \
|
git \
|
||||||
imagemagick \
|
imagemagick \
|
||||||
libmpfr-dev \
|
|
||||||
libmpc-dev \
|
|
||||||
libgmp-dev \
|
libgmp-dev \
|
||||||
e2fsprogs \
|
libgtk-3-dev \
|
||||||
|
libmpc-dev \
|
||||||
|
libmpfr-dev \
|
||||||
|
libpixman-1-dev \
|
||||||
|
libsdl2-dev \
|
||||||
|
libspice-server-dev \
|
||||||
ninja-build \
|
ninja-build \
|
||||||
qemu-utils \
|
qemu-utils \
|
||||||
rsync \
|
rsync \
|
||||||
|
|
Loading…
Reference in a new issue