ruspiro-allocator 0.0.2

This crate provides a simple and lightweight heap memory allocator for Raspberry Pi baremetal environments
Documentation
1
2
3
4
5
6
7
8
9
10
//! Build script to pre-compile the heap memory allocation routines written in c for the time beeing
//! 
extern crate cc;

fn main() {
    cc::Build::new()
        .file("src/memory.c")
        .compile("memory");
    
}