patchelf 0.2.1

patchelf rust bindings
Documentation
1
2
3
4
5
6
use patchelf::*;

fn main() {
    let lib_name = std::env::args().nth(1).expect("no libname given");
    PatchElf::config().debug().input(&lib_name).print_soname().patch();
}