2021-03-11 18:03:08 +00:00
# SerenityOS build instructions
2019-12-29 15:23:50 +00:00
2021-03-11 18:03:08 +00:00
## Prerequisites
2020-05-15 07:00:12 +00:00
2021-07-09 22:53:28 +00:00
Make sure you have all the dependencies installed:
2021-06-12 18:46:52 +00:00
2021-07-09 22:53:28 +00:00
### Debian / Ubuntu
2021-06-12 18:46:52 +00:00
```console
sudo apt install build-essential cmake curl libmpfr-dev libmpc-dev libgmp-dev e2fsprogs ninja-build qemu-system-i386 qemu-utils ccache rsync
```
2021-07-09 22:53:28 +00:00
#### GCC 10
2021-06-12 18:46:52 +00:00
On Ubuntu gcc-10 is available in the repositories of 20.04 (Focal) and later - add the `ubuntu-toolchain-r/test` PPA if you're running an older version:
2021-03-11 18:03:08 +00:00
```console
2021-03-04 11:14:03 +00:00
sudo add-apt-repository ppa:ubuntu-toolchain-r/test
2019-12-29 15:23:50 +00:00
```
2021-03-04 11:14:03 +00:00
On Debian you can use the Debian testing branch:
2021-03-11 18:03:08 +00:00
```console
2021-03-04 11:14:03 +00:00
sudo echo "deb http://http.us.debian.org/debian/ testing non-free contrib main" >> /etc/apt/sources.list
sudo apt update
2020-03-28 20:48:34 +00:00
```
2021-03-04 11:14:03 +00:00
Now on Ubuntu or Debian you can install gcc-10 with apt like this:
2021-03-11 18:03:08 +00:00
```console
2021-03-04 11:14:03 +00:00
sudo apt install gcc-10 g++-10
sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-10 900 --slave /usr/bin/g++ g++ /usr/bin/g++-10
2020-07-14 22:06:16 +00:00
```
2021-03-04 11:14:03 +00:00
If you don't want to stay on the Debian testing branch you can switch back by running:
2021-03-11 18:03:08 +00:00
```console
2021-03-04 11:14:03 +00:00
sudo sed -i '$d' /etc/apt/sources.list
sudo apt update
2020-04-13 15:20:47 +00:00
```
2021-07-09 22:53:28 +00:00
#### QEMU 5 or later
2021-03-04 11:14:03 +00:00
2021-07-09 22:53:28 +00:00
QEMU version 5 is available in Ubuntu 20.10. For earlier versions, you can build version 6 using the `Toolchain/BuildQemu.sh` script.
2021-06-12 18:46:52 +00:00
You may need the gtk+ 3.0 dev package:
2021-03-11 18:03:08 +00:00
```console
2021-07-09 22:53:28 +00:00
sudo apt install libpixman-1-dev libgtk-3-dev
2020-07-04 08:51:16 +00:00
```
2021-07-09 22:53:28 +00:00
### Fedora
2021-03-11 18:03:08 +00:00
```console
2021-06-07 06:32:27 +00:00
sudo dnf install binutils-devel curl cmake mpfr-devel libmpc-devel gmp-devel e2fsprogs ninja-build patch ccache rsync @"C Development Tools and Libraries" @Virtualization
2019-12-29 15:23:50 +00:00
```
2021-07-09 22:53:28 +00:00
### Other systems
2021-03-11 18:03:08 +00:00
2021-07-09 22:53:28 +00:00
There is also documentation for installing the build prerequisites for some less commonly used systems:
2019-12-29 15:23:50 +00:00
2021-07-09 22:53:28 +00:00
* [Other Linux distributions and *NIX systems ](BuildInstructionsOther.md )
* [Windows ](BuildInstructionsWindows.md )
* [macOS ](BuildInstructionsMacOS.md )
2021-01-13 20:24:46 +00:00
2021-03-11 18:03:08 +00:00
## Build
2021-07-09 22:53:28 +00:00
In order to build SerenityOS you will first need to build the toolchain by running the following command:
2021-03-11 18:03:08 +00:00
```console
2021-07-09 22:53:28 +00:00
$ Meta/serenity.sh rebuild-toolchain
2020-05-06 15:40:06 +00:00
```
2020-05-15 07:00:12 +00:00
2021-07-09 22:53:28 +00:00
Later on, when you use `git pull` to get the latest changes, there's (usually) no need to rebuild the toolchain.
2021-04-10 07:34:11 +00:00
2021-07-09 22:53:28 +00:00
Run the following command to build and run SerenityOS:
2021-04-10 07:34:11 +00:00
```console
2021-07-09 22:53:28 +00:00
$ Meta/serenity.sh run
2020-05-06 15:40:06 +00:00
```
2021-07-09 22:53:28 +00:00
This will compile all of SerenityOS and install the built files into the `Build/i686/Root` directory inside your Git
repository. It will also build a disk image and start SerenityOS using QEMU.
2021-03-11 18:03:08 +00:00
2021-07-09 22:53:28 +00:00
Note that the `anon` user is able to become `root` without a password by default, as a development convenience.
2020-03-30 09:32:33 +00:00
To prevent this, remove `anon` from the `wheel` group and he will no longer be able to run `/bin/su` .
2021-07-09 22:53:28 +00:00
If you want to test whether your code changes compile without running the VM you can use
`Meta/serenity.sh build` . The `serenity.sh` script also provides a number of other commands. Run the script without
arguments for a list.
2021-06-20 13:07:21 +00:00
2021-03-11 18:03:08 +00:00
## Ports
2021-01-30 19:09:42 +00:00
2021-07-09 22:53:28 +00:00
To add a package from the ports collection to Serenity, for example curl, change into the `Ports/curl` directory and
run `./package.sh` . The source code for the package will be downloaded and the package will be built. The next time you
start Serenity, `curl` will be available.
2021-05-16 02:13:31 +00:00
2021-07-09 22:53:28 +00:00
## More information
2021-01-30 19:09:42 +00:00
2021-07-09 22:53:28 +00:00
At this point you should have a fully functioning VM for SerenityOS. The [advanced build instructions guide ](AdvancedBuildInstructions.md )
has more information for some less commonly used features of the build system.