gen_elf/lib.rs
1//! `gen-elf` is a utility for generating ELF files (Shared Objects and Relocatable Objects)
2//! specifically designed for testing ELF loaders.
3
4mod arch;
5mod common;
6mod dylib;
7mod relocatable;
8
9pub use arch::Arch;
10pub use common::{RelocEntry, RelocType, SectionKind, SymbolDesc, SymbolScope, SymbolType};
11pub use dylib::{DylibWriter, ElfWriteOutput, ElfWriterConfig, RelocationInfo};
12pub use relocatable::{ObjectElfOutput, ObjectWriter};