elf_loader 0.17.0

A no_std-friendly ELF loader and runtime linker for Rust.
Documentation
#![no_main]
#![no_std]

use core::panic::PanicInfo;

unsafe extern "C" {
    fn fixture_value() -> i32;
}

#[panic_handler]
fn panic(_info: &PanicInfo) -> ! {
    loop {}
}

#[unsafe(no_mangle)]
pub extern "C" fn _start() -> ! {
    core::hint::black_box(unsafe { fixture_value() });
    loop {}
}