Skip to content

Commit da15496

Browse files
bors[bot]rjsberry
andauthored
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>
2 parents b470e26 + 8bcf9d8 commit da15496

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ fn main() -> Result<(), Box<dyn Error>> {
1111
println!("cargo:rustc-cfg=armv7m");
1212
} else if target.starts_with("thumbv7em-") {
1313
println!("cargo:rustc-cfg=armv7m");
14-
} else if target.starts_with("armv7r-") {
14+
} else if target.starts_with("armv7r-") | target.starts_with("armebv7r-") {
1515
println!("cargo:rustc-cfg=armv7r");
1616
} else if target.starts_with("thumbv8m.base") {
1717
println!("cargo:rustc-cfg=armv8m_base");

0 commit comments

Comments
 (0)