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.
This commit is contained in:
Adam Hodgen 2021-06-12 19:45:14 +01:00 committed by Linus Groh
parent ba7e025320
commit 9bc0017499
Notes: sideshowbarker 2024-07-18 12:18:41 +09:00

View file

@ -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