mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 07:30:19 +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
Notes:
sideshowbarker
2024-07-18 02:13:10 +09:00
Author: https://github.com/gmta Commit: https://github.com/SerenityOS/serenity/commit/8744086781b Pull-request: https://github.com/SerenityOS/serenity/pull/10941 Reviewed-by: https://github.com/ADKaster ✅ Reviewed-by: https://github.com/kleinesfilmroellchen ✅
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:
|
||||
|
||||
```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
|
||||
|
|
|
@ -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 \
|
||||
|
|
Loading…
Reference in a new issue