Skip to content

Commit

Permalink
ARM needs libunwind 1.8.2 (#89)
Browse files Browse the repository at this point in the history
  • Loading branch information
szmyd authored Jul 30, 2024
1 parent d148260 commit e706a86
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@

class IOMgrConan(ConanFile):
name = "iomgr"
version = "11.3.5"
version = "11.3.6"

homepage = "https://github.com/eBay/IOManager"
description = "Asynchronous event manager"
Expand Down Expand Up @@ -77,7 +77,10 @@ def requirements(self):
self.requires("libcurl/8.4.0", override=True)
self.requires("lz4/1.9.4", override=True)
self.requires("zstd/1.5.5", override=True)
self.requires("libunwind/1.8.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)

def _download_grpc(self, folder):
ref = self.dependencies['grpc'].ref.version
Expand Down

0 comments on commit e706a86

Please sign in to comment.