9 lines
186 B
Rust
9 lines
186 B
Rust
|
use std::error::Error;
|
||
|
|
||
|
fn main() -> Result<(), Box<dyn Error>> {
|
||
|
println!("cargo:rustc-link-arg-bins=-Tmemory.x");
|
||
|
println!("cargo:rustc-link-arg-bins=-Tlink.x");
|
||
|
|
||
|
Ok(())
|
||
|
}
|