hwloc2 2.2.0

Rust bindings for the hwloc hardware locality library 2.x.
Documentation
1
2
3
4
5
6
7
8
extern crate pkg_config;

fn main() {
    let probed = pkg_config::Config::new().atleast_version("2.0.0").probe("hwloc");
    if probed.is_ok() {
        return;
    }
}