Skip to content

Latest commit

 

History

History
 
 

glibc_version

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
 
 
 
 
 
 

glibc_version

cratesio doc

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

Usage

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