From 93bd23d03117723a1900cc97b1e5eadc94ba1a91 Mon Sep 17 00:00:00 2001 From: Stepland <10530295-Buggyroom@users.noreply.gitlab.com> Date: Tue, 11 Oct 2022 10:15:33 +0200 Subject: [PATCH] Update docs to mention gcc-10 requirement --- docs/Setup.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/docs/Setup.md b/docs/Setup.md index a7c6d1f..ef2fcaa 100644 --- a/docs/Setup.md +++ b/docs/Setup.md @@ -1,4 +1,4 @@ -# Setting up the tools you need to work on F.E.I.S. +# Setting up the tools you need to work with F.E.I.S.'s code ## Debian-ish Linux @@ -10,6 +10,9 @@ Install the big general "I'm a real C/C++ dev !" package. $ sudo apt install build-essential ``` +If this only gave you gcc version 9 or older, you need to install 10 : follow +[these instructions](https://web.archive.org/web/20220317024657/https://ahelpme.com/linux/ubuntu/install-and-make-gnu-gcc-10-default-in-ubuntu-20-04-focal/). + Install meson (the build system). I recommend doing so via python's `pip` to get a more up-to-date version than what your distro packages might have @@ -30,7 +33,7 @@ Install SFML sudo apt install libsfml-dev ``` -Then checkout [this page](docs/Compiling.md) for instructions on how to compile +Then checkout [this page](Compiling.md) for instructions on how to compile ### I also want to contribute some code