From 6f7961444f5fb9cbb636e1875d01b2793889ba0b Mon Sep 17 00:00:00 2001 From: ooxi Date: Sun, 27 Feb 2022 10:34:49 +0100 Subject: [PATCH] Updated build instructions (#3573) Building on Ubuntu 18.04 no longer works as documented ``` CMake Error at lib/settings/CMakeLists.txt:132 (message): GCC version must be at least 8.0 if using std filesystem ``` I verified the build instructions on Ubuntu 20.04 and they work as advertised. For Ubuntu 18.04, you'd have the option of 1) Manually installing a later version of GCC 2) Using clang 3) passing the `-DPAJLADA_SETTINGS_USE_BOOST_FILESYSTEM=1` flag to cmake --- BUILDING_ON_LINUX.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/BUILDING_ON_LINUX.md b/BUILDING_ON_LINUX.md index d9df2848b..d2edc4f62 100644 --- a/BUILDING_ON_LINUX.md +++ b/BUILDING_ON_LINUX.md @@ -2,7 +2,7 @@ Note on Qt version compatibility: If you are installing Qt from a package manager, please ensure the version you are installing is at least **Qt 5.12 or newer**. -## Ubuntu 18.04 +## Ubuntu 20.04 _Most likely works the same for other Debian-like distros_