Skip to content

Commit 8bcf9d8

Browse files
committed
Extend ARMv7-R Pool support to the bare-metal armebv7r- targets
1 parent 253cd89 commit 8bcf9d8

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)