mirror of
https://github.com/italicsjenga/gba.git
synced 2025-02-23 23:07:49 +11:00
JYN said this should work.
This commit is contained in:
parent
60ab38458c
commit
28f81b51e4
2 changed files with 13 additions and 8 deletions
|
@ -31,3 +31,5 @@ panic = "abort"
|
||||||
|
|
||||||
[package.metadata.docs.rs]
|
[package.metadata.docs.rs]
|
||||||
default-target = "thumbv4t-none-eabi"
|
default-target = "thumbv4t-none-eabi"
|
||||||
|
cargoflags = ["-Zbuild-std=core"]
|
||||||
|
rustdoc-args = ["--cfg","docs_rs"]
|
||||||
|
|
3
build.rs
3
build.rs
|
@ -1,4 +1,6 @@
|
||||||
fn main() {
|
fn main() {
|
||||||
|
// we skip assembling the runtime for docs.rs builds.
|
||||||
|
if !cfg!(docs_rs) {
|
||||||
let out_file = "rsrt0.o";
|
let out_file = "rsrt0.o";
|
||||||
let out_dir = std::env::var("OUT_DIR").unwrap();
|
let out_dir = std::env::var("OUT_DIR").unwrap();
|
||||||
let out_dir_file = format!("{}/{}", out_dir, out_file);
|
let out_dir_file = format!("{}/{}", out_dir, out_file);
|
||||||
|
@ -14,4 +16,5 @@ fn main() {
|
||||||
}
|
}
|
||||||
//
|
//
|
||||||
println!("cargo:rustc-link-search={}", out_dir);
|
println!("cargo:rustc-link-search={}", out_dir);
|
||||||
|
}
|
||||||
}
|
}
|
Loading…
Add table
Reference in a new issue