2021-07-10 01:53:28 +03:00
# Installing build requisites on other systems
2021-07-11 23:19:11 +03:00
### Fedora
2021-07-10 01:53:28 +03:00
```console
2022-02-19 17:09:34 +03:00
sudo dnf install texinfo binutils-devel curl cmake mpfr-devel libmpc-devel gmp-devel e2fsprogs ninja-build patch ccache rsync @"C Development Tools and Libraries" @Virtualization
2021-07-10 01:53:28 +03:00
```
2022-04-04 10:23:22 +03:00
Optional: `fuse2fs` for [building images without root ](https://github.com/SerenityOS/serenity/pull/11224 ).
2021-07-10 01:53:28 +03:00
2021-07-11 23:19:11 +03:00
## openSUSE
2021-07-10 01:53:28 +03:00
```console
2021-07-11 23:19:11 +03:00
sudo zypper install curl cmake mpfr-devel mpc-devel ninja gmp-devel e2fsprogs patch qemu-x86 qemu-audio-pa gcc gcc-c++ ccache rsync patterns-devel-C-C++-devel_C_C++
2021-07-10 01:53:28 +03:00
```
## Void Linux
```console
sudo xbps-install -S base-devel cmake curl mpfr-devel libmpc-devel gmp-devel e2fsprogs ninja qemu ccache rsync
```
## ALT Linux
```console
apt-get install curl cmake libmpc-devel gmp-devel e2fsprogs libmpfr-devel ninja-build patch gcc ccache rsync
```
## NixOS
2022-03-08 07:12:55 +03:00
You can use the `nix-shell` script [`Toolchain/serenity.nix` ](../Toolchain/serenity.nix ) to set up the environment:
2021-07-10 01:53:28 +03:00
2022-03-08 07:12:55 +03:00
```console
nix-shell Toolchain/serenity.nix
2021-07-10 01:53:28 +03:00
```
## Alpine Linux
First, make sure you have enabled the `community` repository in `/etc/apk/repositories` and run `apk update` . It has been tested on `edge` , YMMV on `stable` .
```console
# the basics, if you have not already done so
apk add bash curl git util-linux sudo
2022-02-11 06:04:51 +03:00
# GNU coreutils for GNU's version of `du`
apk add coreutils
2021-07-10 01:53:28 +03:00
# rough equivalent of build-essential
apk add build-base
# qemu
apk add qemu qemu-system-i386 qemu-img qemu-ui-gtk
# build tools (samurai is a drop-in replacement for ninja)
2022-03-02 04:20:13 +03:00
apk add cmake e2fsprogs grub-bios samurai mpc1-dev mpfr-dev gmp-dev ccache rsync texinfo
2021-07-10 01:53:28 +03:00
```
## OpenBSD prerequisites
```console
2021-12-24 19:00:08 +03:00
doas pkg_add bash cmake g++ gcc git gmake gmp ninja ccache rsync coreutils qemu sudo e2fsprogs
2021-07-10 01:53:28 +03:00
```
## FreeBSD prerequisites
```console
2022-02-14 16:32:58 +03:00
pkg install qemu bash cmake coreutils e2fsprogs fusefs-ext2 gcc11 git gmake ninja sudo gmp mpc mpfr ccache rsync
2021-07-10 01:53:28 +03:00
```
2022-04-04 10:23:22 +03:00
Optional: `fusefs-ext2` for [building images without root ](https://github.com/SerenityOS/serenity/pull/11224 ).