summaryrefslogtreecommitdiff
path: root/Toolchain/README.md
blob: 92dafa5374e3a2f3a0619b8eb230dee147ed2031 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
# Serenity Toolchain - Building the Serenity operating system

This directory contains all toolchain related files. E.g. build scripts for
the cross compilation toolchain and build toolchain for ports.

- [Serenity Toolchain - Building the Serenity operating system](#serenity-toolchain---building-the-serenity-operating-system)
  - [Cross Compile Toolchain](#cross-compile-toolchain)
    - [Dependencies](#dependencies)
  - [Serenity (Full build)](#serenity-full-build)
  - [Running SerenityOS in an emulator](#running-serenityos-in-an-emulator)
    - [QEMU installation / compilation](#qemu-installation--compilation)
    - [Passing custom arguments to QEMU](#passing-custom-arguments-to-qemu)

## Cross Compile Toolchain

The cross compile toolchain contains

- binutils 2.32

- GCC 8.3.0

These are built from source with some patches applied.

### Dependencies

- Build Essentials

    ```bash
    sudo apt install build-essential curl libmpfr-dev libmpc-dev libgmp-dev
    ```

- GCC 8

    ```bash
    sudo add-apt-repository ppa:ubuntu-toolchain-r/test
    sudo apt-get install gcc-8 g++-8
    sudo update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-8 800 --slave /usr/bin/g++ g++ /usr/bin/g++-8
    ```

- e2fsprogs

    ```bash
    sudo apt install e2fsprogs
    ```

## Serenity (Full build)

If everything worked out, you now have the **i686-pc-serenity** toolchain ready and we can build Serenity.

Go into `Kernel/` folder and build it:

```bash
./makeall.sh
```

Then take it for a spin:

```bash
./run
```

See next chapter for more options on running SerenityOS in an emulator.

## Running SerenityOS in an emulator

To run SerenityOS in a specific emulator, call the `./run` command in the `Kernel/` folder:

```bash
./run
```

There are several emulators supported to run SerenityOS in:

- Bochs

    ```bash
    sudo apt install bochs
    ```

    Add the `b` argument to the run script, to use bochs emulator:

    ```bash
    ./run b
    ```

- QEMU
    QEMU with networking enabled is used by default, when no extra argument is passed to the run script.
    There are some extra arguments to run QEMU emulator with specific settings:

    Add the `qn` argument to the run script to use QEMU without networking:

    ```bash
    ./run qn
    ```

    Add the `qgrub` argument to the run script to use QEMU with grub bootloader:

    ```bash
    ./run qgrub
    ```

    Add the `qtext` argument to the run script to use QEMU with textmode:

    ```bash
    ./run qtext
    ```

    Note: there is a problem with the PS/2 keyboard/mouse emulation in QEMU 2.11.1 as packaged in Ubuntu's LTS releases.
    If you have any strange behaviour with missing keyboard inputs or jittery mouse movement, try building QEMU from
    source as described in [QEMU](#qemu-installation--compilation). 2.12.1, 3.0.1, 3.1.0, and 4.0.0 are all confirmed as working when built from source.

### QEMU installation / compilation

If your distribution contains a QEMU version > 2.11.1, then you can just install it via

```bash
sudo apt install qemu-system-i386 qemu-utils
```

If that is not the case, you can build QEMU from sources with the provided script `BuildQemu.sh`.
To do so, some build dependencies have to be installed first:

```bash
sudo apt-get build-dep qemu
sudo apt-get install libgtk-3-dev
```

The source-repositories of your distribution have to be enabled to install the build-dep's.

`BuildQemu.sh` has been tested with QEMU 3.0.0 and 4.1.0 (which is default). If you
want to build QEMU 3.0.0, change the variable `QEMU_VERSION` and `QEMU_MD5SUM` accordingly:

```bash
QEMU_VERSION="qemu-3.0.0"
QEMU_MD5SUM="${QEMU300_MD5SUM}"
```

### Passing custom arguments to QEMU

You can modify the environment variable `SERENITY_EXTRA_QEMU_ARGS` to your needs or hand it over directly before the run command:

```bash
SERENITY_EXTRA_QEMU_ARGS="-nographic" ./run qtext
```