glibc_version 0.1.0

Discover GNU libc version at build time
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15

`glibc_version`
===============

Crate to help rust projects discover GNU libc version at build time. Expected
to be used in `build.rs`.


Usage
-----

```rust
let ver = glibc_version::get_version().unwrap();
println!("glic version: {}.{}", ver.major, ver.minor);
```