gen-elf 0.1.0

A utility for generating ELF files for testing ELF loaders.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! `gen-elf` is a utility for generating ELF files (Shared Objects and Relocatable Objects)
//! specifically designed for testing ELF loaders.

mod arch;
mod common;
mod dylib;
mod relocatable;

pub use arch::Arch;
pub use common::{RelocEntry, RelocType, SectionKind, SymbolDesc, SymbolScope, SymbolType};
pub use dylib::{DylibWriter, ElfWriteOutput, ElfWriterConfig, RelocationInfo};
pub use relocatable::{ObjectElfOutput, ObjectWriter};