Skip to content

Commit

Permalink
llvm-openmp: mention potential cause of the armv8 Debug issues
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Jul 11, 2024
1 parent c404d92 commit 7b5356b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion recipes/llvm-openmp/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -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):
Expand Down

0 comments on commit 7b5356b

Please sign in to comment.