Expand description
§Rldd_Minimal: Recursive ELF Dependency Resolver
This crate provides the core logic for recursively scanning ELF binaries and
resolving their shared library dependencies across POSIX systems.
It handles standard search paths, RPATH, RUNPATH, and special cases like musl libc.
Enums§
- ElfArch
- Re-exports ELF metadata types including architecture, file type, and machine specifications. Represents the bit-width architecture of an ELF binary.
- ElfMachine
- Re-exports ELF metadata types including architecture, file type, and machine specifications. Represents the hardware instruction set (machine type) of the ELF binary.
- ElfType
- Re-exports ELF metadata types including architecture, file type, and machine specifications. Defines the linking and execution type of the ELF binary.
Functions§
- rldd_
minimal - The primary entry point for the recursive dependency resolution logic. The main entry point for resolving ELF dependencies.