elf_parser_rs 0.2.0

An lightweight ELF parser that parses ELF files and converts them into information needed for kernel building
Documentation
1
2
3
4
5
6
7
8
9
#![cfg_attr(not(test), no_std)]
#![doc = include_str!("../README.md")]

mod auxv;
pub use auxv::*;
mod info;
pub use info::*;
mod user_stack;
pub use user_stack::app_stack_region;