anlsys / libnrm

Node Resource Manager communication library
BSD 3-Clause "New" or "Revised" License
7 stars 0 forks source link

hwloc dependency needs to be updated to 2.5 #45

Closed perarnau closed 1 year ago

perarnau commented 1 year ago

Recent changes to the hwloc support use symbols that only exist after hwloc minor > 2.4 (RESTRICT), can we update the configure script or modify the code to support old hwloc versions?

iddaoudi commented 1 year ago

Current version in aptitude is 2.7 as shown here: $ apt show libhwloc-dev Package: libhwloc-dev Version: 2.7.0-2ubuntu1 Priority: extra Section: universe/libdevel Source: hwloc Origin: Ubuntu

All what's needed is to update the configure.ac line 86 with: PKG_CHECK_MODULES([HWLOC], [hwloc >= 2.5])

perarnau commented 1 year ago

Yes. Go ahead and make a PR for it.