2021-07-09 18:53:28 -04:00
# Installing build requisites on other systems
2021-07-11 16:19:11 -04:00
### Fedora
2021-07-09 18:53:28 -04:00
```console
2022-02-19 09:09:34 -05: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-09 18:53:28 -04:00
```
2024-09-11 10:20:33 -04:00
2024-08-20 11:35:22 -04:00
Optional: `e2fsprogs` package for [building images without root ](https://github.com/SerenityOS/serenity/pull/11224 ).
2021-07-09 18:53:28 -04:00
2021-07-11 16:19:11 -04:00
## openSUSE
2021-07-09 18:53:28 -04:00
```console
2021-07-11 16:19:11 -04: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-09 18:53:28 -04: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
2024-03-16 04:36:09 -04:00
You can use the flake in the root directory to enter a devShell that has all the required packages and tools to build SerenityOS:
2021-07-09 18:53:28 -04:00
2022-03-07 23:12:55 -05:00
```console
2024-03-16 04:36:09 -04:00
nix develop
2021-07-09 18:53:28 -04:00
```
2024-03-16 04:36:09 -04:00
Or you can use the legacy `nix-shell` tool to enter the devShell:
2023-08-31 09:39:47 -04:00
```console
2024-03-16 04:36:09 -04:00
nix-shell Toolchain
2023-08-31 09:39:47 -04:00
```
2024-03-16 04:36:09 -04:00
This will use the `Toolchain/default.nix` file and your host `nixpkgs` .
2023-08-31 10:29:27 -04:00
2021-07-09 18:53:28 -04: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-10 22:04:51 -05:00
# GNU coreutils for GNU's version of `du`
apk add coreutils
2021-07-09 18:53:28 -04:00
# rough equivalent of build-essential
apk add build-base
# qemu
2023-08-10 12:28:27 -04:00
apk add qemu qemu-system-x86_64 qemu-img qemu-ui-gtk qemu-audio-pa
2021-07-09 18:53:28 -04:00
# build tools (samurai is a drop-in replacement for ninja)
2022-03-01 20:20:13 -05:00
apk add cmake e2fsprogs grub-bios samurai mpc1-dev mpfr-dev gmp-dev ccache rsync texinfo
2021-07-09 18:53:28 -04:00
```
2024-09-11 10:20:33 -04:00
2023-08-10 12:28:27 -04:00
Optional: `fuse2fs` for [building images without root ](https://github.com/SerenityOS/serenity/pull/11224 ).
2021-07-09 18:53:28 -04:00
## OpenBSD prerequisites
```console
2021-12-24 11:00:08 -05:00
doas pkg_add bash cmake g++ gcc git gmake gmp ninja ccache rsync coreutils qemu sudo e2fsprogs
2021-07-09 18:53:28 -04:00
```
## FreeBSD prerequisites
```console
2022-02-14 08:32:58 -05:00
pkg install qemu bash cmake coreutils e2fsprogs fusefs-ext2 gcc11 git gmake ninja sudo gmp mpc mpfr ccache rsync
2021-07-09 18:53:28 -04:00
```
2024-09-11 10:20:33 -04:00
2022-04-04 03:23:22 -04:00
Optional: `fusefs-ext2` for [building images without root ](https://github.com/SerenityOS/serenity/pull/11224 ).