Crate getargv_sys
source ·Expand description
Unsafe Rust bindings for the getargv library.
This crate provides unsafe FFI bindings for libgetargv, there is a safe wrapper in the getargv crate.
You almost certainly do not want to use this crate directly.
You must have libgetargv installed for
this crate to link to, it will not build/install it for you. If
libgetargv.dylib
is not located in one of clang
’s default search
paths, you must set theLIBGETARGV_LIB_DIR
env var to tell rustc
where to find it, and you will either need to set the
DYLD_FALLBACK_LIBRARY_PATH
env var at runtime to tell dyld where
to load it from, or you will need to use install_name_tool
on your
binary to fixup the library load path.