From 8064b14d181f682f6398af943ba6467271bf5670 Mon Sep 17 00:00:00 2001 From: Uilian Ries Date: Mon, 25 Sep 2023 15:39:06 +0200 Subject: [PATCH] Support gcc 6 actually Signed-off-by: Uilian Ries --- recipes/compute_library/all/conanfile.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/recipes/compute_library/all/conanfile.py b/recipes/compute_library/all/conanfile.py index 44b8f7272ebf2..6becfaaa8f1bb 100644 --- a/recipes/compute_library/all/conanfile.py +++ b/recipes/compute_library/all/conanfile.py @@ -43,7 +43,7 @@ def _min_cppstd(self): @property def _compilers_minimum_version(self): return { - "gcc": "10", + "gcc": "6", "clang": "5", "apple-clang": "5.1", }