Skip to main content

Crate rldd_minimal

Crate rldd_minimal 

Source
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.