elf_loader 0.17.0

A no_std-friendly ELF loader and runtime linker for Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![cfg(any(
    windows,
    feature = "use-syscall",
    all(any(target_os = "linux", target_os = "android"), feature = "libc")
))]

mod binding;
mod errors;
mod fixture;
#[path = "../fixture_build/mod.rs"]
mod fixture_build;
mod scope;
mod support;