Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions 3rd_party/userspace-rcu/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -75,13 +75,12 @@ def package(self):
rmdir(self, os.path.join(self.package_folder, "share"))

def package_info(self):
for lib_type in ["", "-bp", "-cds", "-mb", "-memb", "-qsbr", "-signal"]:
for lib_type in ["","-memb"]:
component_name = f"urcu{lib_type}"
self.cpp_info.components[component_name].libs = ["urcu-common", component_name]
self.cpp_info.components[component_name].set_property("pkg_config_name", component_name)
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.components[component_name].system_libs = ["pthread"]

# Some definitions needed for MB and Signal variants
self.cpp_info.components["urcu-mb"].defines = ["RCU_MB"]
self.cpp_info.components["urcu-signal"].defines = ["RCU_SIGNAL"]
self.cpp_info.components["urcu-memb"].defines = ["RCU_MEMB"]
2 changes: 1 addition & 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 = "13.0.3"
version = "13.0.4"

homepage = "https://github.com/eBay/sisl"
description = "Library for fast data structures, utilities"
Expand Down