diff options
author | Adam Hodgen <ant1441@gmail.com> | 2021-06-12 19:45:14 +0100 |
---|---|---|
committer | Linus Groh <mail@linusgroh.de> | 2021-06-13 17:16:03 +0100 |
commit | 9bc0017499959f8e9f868fda2c7fbd9f9fa63cf4 (patch) | |
tree | fcd444c62843b85741ae49f15f632e7368ce9375 /Documentation/BuildInstructions.md | |
parent | ba7e0253207cdbb4798752ac950362b0f84b851b (diff) | |
download | serenity-9bc0017499959f8e9f868fda2c7fbd9f9fa63cf4.zip |
Documentation: Fix QEMU 5 Ubuntu version confusion
PR #7970 added a line clarifying the requirement for QEMU 5.
Unfortunately, this location this line was added changed the meaning
of the following line, referencing the availability of GCC in Ubuntu
20.04.
QEMU 5 is not available in Ubuntu 20.04, so this change is incorrect,
as well as misleading.
Diffstat (limited to 'Documentation/BuildInstructions.md')
-rw-r--r-- | Documentation/BuildInstructions.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/BuildInstructions.md b/Documentation/BuildInstructions.md index 48fefb1ed9..138e1fe6d6 100644 --- a/Documentation/BuildInstructions.md +++ b/Documentation/BuildInstructions.md @@ -6,10 +6,10 @@ Ensure your CMake version is >= 3.16 with `cmake --version`. If your system doesn't provide a suitable version of CMake, you can download a binary release from the [CMake website](https://cmake.org/download). -Ensure your gcc version is >= 10 with `gcc --version`. Otherwise, install it. - Ensure your [QEMU](https://www.qemu.org/) version is >= 5 with `qemu-system-i386 -version`. Otherwise, install it. You can also build it using the `Toolchain/BuildQemu.sh` script. +Ensure your gcc version is >= 10 with `gcc --version`. Otherwise, install it. + On Ubuntu it's in the repositories of 20.04 (Focal) and later - add the `ubuntu-toolchain-r/test` PPA if you're running an older version: ```console |