Skip to content

Commit

Permalink
libfabric: add libatomic system dependency
Browse files Browse the repository at this point in the history
  • Loading branch information
valgur committed Dec 14, 2023
1 parent e43822f commit 5ca9136
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion recipes/libfabric/all/conanfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,6 @@ def package(self):
copy(self, "COPYING", dst=os.path.join(self.package_folder, "licenses"), src=self.source_folder)
autotools = Autotools(self)
autotools.install()

rmdir(self, os.path.join(self.package_folder, "share"))
rmdir(self, os.path.join(self.package_folder, "lib", "pkgconfig"))
rm(self, "*.la", self.package_folder, recursive=True)
Expand All @@ -178,3 +177,4 @@ def package_info(self):
self.cpp_info.libs = ["fabric"]
if self.settings.os in ["Linux", "FreeBSD"]:
self.cpp_info.system_libs = ["pthread", "m", "rt", "dl"]
self.cpp_info.system_libs.append("atomic")

0 comments on commit 5ca9136

Please sign in to comment.