From 7b5356b554730d13515a0fe0cd2405d2e05ffce1 Mon Sep 17 00:00:00 2001 From: Martin Valgur Date: Thu, 18 Jan 2024 08:45:49 +0200 Subject: [PATCH] llvm-openmp: mention potential cause of the armv8 Debug issues As suggested by @marxin at https://github.com/conan-io/conan-center-index/pull/19857#issuecomment-1882905215 --- recipes/llvm-openmp/all/conanfile.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/recipes/llvm-openmp/all/conanfile.py b/recipes/llvm-openmp/all/conanfile.py index 05539636521b5..98e69a6c1e894 100644 --- a/recipes/llvm-openmp/all/conanfile.py +++ b/recipes/llvm-openmp/all/conanfile.py @@ -97,8 +97,9 @@ def validate(self): if is_apple_os(self) and self.settings.arch == "armv8": if self._version_major <= 10: raise ConanInvalidConfiguration("ARM v8 not supported") - if self._version_major != 11 and self.settings.build_type == "Debug": + if self._version_major >= 12 and self.settings.build_type == "Debug": # All versions except for v11 crash with a segfault for the simple test_package.cpp test + # Might be related to https://github.com/llvm/llvm-project/issues/49923 raise ConanInvalidConfiguration("Debug mode not supported for ARM v8") def build_requirements(self):