sharedlib 6.0.0

A cross-platform shared library loader.
Documentation
1
2
3
4
5
6
7
8
#[cfg(not(any(target_os="android", target_os="ios", target_os="macos")))]
pub const LIBM: &'static str = "libm.so.6";

#[cfg(target_os="android")]
pub const LIBM: &'static str = "libm.so";

#[cfg(any(target_os="ios", target_os="macos"))]
pub const LIBM: &'static str = "libm.dylib";