aboutsummaryrefslogtreecommitdiff
path: root/examples/mcxa/build.rs
blob: f076bba9f417757e31e98ace8bbd7e37a8fde9ab (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
use std::env;
use std::fs::File;
use std::io::Write;
use std::path::PathBuf;

fn main() {
    let out = &PathBuf::from(env::var_os("OUT_DIR").unwrap());

    // Generate memory.x - put "FLASH" at start of RAM, RAM after "FLASH"
    // cortex-m-rt expects FLASH for code, RAM for data/bss/stack
    // Both are in RAM, but separated to satisfy cortex-m-rt's expectations
    // MCXA256 has 128KB RAM total
    File::create(out.join("memory.x"))
        .unwrap()
        .write_all(include_bytes!("memory.x"))
        .unwrap();

    println!("cargo:rustc-link-search={}", out.display());
    println!("cargo:rerun-if-changed=memory.x");
}