]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
sanity: Require gcc 5.0 minimum version
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Thu, 2 Apr 2020 15:45:26 +0000 (16:45 +0100)
committerArmin Kuster <akuster808@gmail.com>
Mon, 20 Apr 2020 00:15:54 +0000 (17:15 -0700)
After polling various develoeprs, its clear that many layers are struggling
with gcc 4.8 and its better for the project to adopt 5.0 as a minimum
version at this point in time. We should have technology like
buildtools-extended-tarball available to ensure things still work on Centos 7
and Debian 8.

Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit abc741af16311cb473b7e3185ae34265b243d804)
Signed-off-by: Armin Kuster <akuster808@gmail.com>
meta/classes/sanity.bbclass

index 15b05d442bad6893f874441da185314e86d49b40..f82676bf906a82c9e939b6bdf001d89f61ba4695 100644 (file)
@@ -521,7 +521,7 @@ def check_wsl(d):
             return "OpenEmbedded doesn't work under WSL at this time, sorry"
     return None
 
-# Require at least gcc version 4.8.
+# Require at least gcc version 5.0.
 #
 # This can be fixed on CentOS-7 with devtoolset-6+
 # https://www.softwarecollections.org/en/scls/rhscl/devtoolset-6/
@@ -535,8 +535,8 @@ def check_gcc_version(sanity_data):
     
     build_cc, version = oe.utils.get_host_compiler_version(sanity_data)
     if build_cc.strip() == "gcc":
-        if LooseVersion(version) < LooseVersion("4.8"):
-            return "Your version of gcc is older than 4.8 and will break builds. Please install a newer version of gcc (you could use the project's buildtools-extended-tarball or use scripts/install-buildtools).\n"
+        if LooseVersion(version) < LooseVersion("5.0"):
+            return "Your version of gcc is older than 5.0 and will break builds. Please install a newer version of gcc (you could use the project's buildtools-extended-tarball or use scripts/install-buildtools).\n"
     return None
 
 # Tar version 1.24 and onwards handle overwriting symlinks correctly