mirror of
https://github.com/rust-embedded/heapless.git
synced 2025-09-29 05:20:32 +00:00
Merge #155
155: Extend ARMv7-R `Pool` support to the bare-metal `armebv7r-` targets r=japaric a=rjsberry Extends support for singleton `Pool`s to include the `armebv7r-none-eabi` and `armebv7r-none-eabihf` targets. Co-authored-by: Richard Berry <rjsberry@pm.me>
This commit is contained in:
commit
da154963e2
2
build.rs
2
build.rs
@ -11,7 +11,7 @@ fn main() -> Result<(), Box<dyn Error>> {
|
||||
println!("cargo:rustc-cfg=armv7m");
|
||||
} else if target.starts_with("thumbv7em-") {
|
||||
println!("cargo:rustc-cfg=armv7m");
|
||||
} else if target.starts_with("armv7r-") {
|
||||
} else if target.starts_with("armv7r-") | target.starts_with("armebv7r-") {
|
||||
println!("cargo:rustc-cfg=armv7r");
|
||||
} else if target.starts_with("thumbv8m.base") {
|
||||
println!("cargo:rustc-cfg=armv8m_base");
|
||||
|
Loading…
x
Reference in New Issue
Block a user