2 unstable releases
0.2.0 | Jan 24, 2023 |
---|---|
0.1.0 | Dec 30, 2022 |
#17 in #mach-o
155KB
4K
SLoC
rldd
The rldd tool resolves and prints the binary or shared library dependencies with different visualization options. Similar to the Linux ldd tool, it does not invoke the system loader but instead parses the loading information directly from either ELF or Mach-O files, along with any required system files (such as loader cache or extra configuration files).
Currently it supports Linux (glibc, android, and musl), FreeBSD, OpenBSD, NetBSD, Illumos (no support for crle/ld.config, trusted directories, or any environment variable), and macOS.
Output
The default visualization option prints unique dependencies, including loader and libc for Linux and BSD.
Use the '-a' option to print all dependencies (including already resolved ones), and the '-p' option to print fully resolved paths instead of just the soname.
The '-l' option mimics the ldd output, with unique libraries one per line.
Building from source
git clone git@github.com:zatrazz/rldd.git
cd rlld
cargo build --release
Dependencies
~3–11MB
~119K SLoC