#memory #offset #blocks #limit #ld #programmatically #gnu

build ld-memory

Helper crate to programmatically create GNU ld MEMORY blocks

10 releases

0.2.9 Jun 29, 2023
0.2.7 Jun 2, 2023
0.2.3 May 30, 2023
0.2.2 Jul 5, 2021
0.1.0 Mar 16, 2021

#87 in Build Utils

Download history 48/week @ 2023-12-15 1/week @ 2023-12-29 158/week @ 2024-01-05 13/week @ 2024-01-12 69/week @ 2024-01-19 63/week @ 2024-01-26 30/week @ 2024-02-02 78/week @ 2024-02-09 618/week @ 2024-02-16 539/week @ 2024-02-23 937/week @ 2024-03-01 1171/week @ 2024-03-08 752/week @ 2024-03-15 463/week @ 2024-03-22 118/week @ 2024-03-29

2,729 downloads per month
Used in ld-memory-cli

MIT/Apache

13KB
252 lines

ld-memory

This crate allows creating MEMORY blocks programmatically.

It is supposed to be used in build.rs of crates that now ship memory.x files, which don't easily allow specifying offsets and limits as needed for e.g., a bootloader taking space in front of the application binary.

Example:

This code:

use ld_memory::{Memory, MemorySection};

pub fn main() {
    let memory = Memory::new()
        .add_section(MemorySection::new("FLASH", 0, 0x40000))
        .add_section(MemorySection::new("RAM", 0x20000000, 0x10000));

    println!("{}", memory.to_string());
}

... will print this:

MEMORY
{
    FLASH : ORIGIN = 0x00000000, LENGTH = 262144
    RAM : ORIGIN = 0x20000000, LENGTH = 65536
}

License

This work is licensed under either of

at your option.

No runtime deps

Features