Skip to content

Commit

Permalink
ARMv8 requires libunwind 1.8.2 (#243)
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd authored Aug 1, 2024
1 parent b52fe08 commit a87da9c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class SISLConan(ConanFile):
name = "sisl"
version = "12.2.6"
version = "12.2.7"

homepage = "https://github.com/eBay/sisl"
description = "Library for fast data structures, utilities"
Expand Down Expand Up @@ -87,6 +87,10 @@ def requirements(self):
self.requires("breakpad/cci.20210521")
self.requires("fmt/10.0.0", override=True)

# ARM needs unreleased versionof libunwind
if not self.settings.arch in ['x86', 'x86_64']:
self.requires("libunwind/1.8.2@baydb/develop", override=True)

if self.options.metrics:
self.requires("flatbuffers/23.5.26", transitive_headers=True)
self.requires("folly/nu2.2023.12.18.00", transitive_headers=True)
Expand Down

0 comments on commit a87da9c

Please sign in to comment.