Skip to content

Commit 1d6c207

Browse files
bors[bot]japaric
andauthored
Merge #142
142: Extend the ARMv7-A `Pool` support to the bare-metal `armv7a-` targets. r=japaric a=japaric The built-in rustc targets ended with names that start with `armv7a-` so #140 does not cover them though the intention was to support them; this commit fixes that Co-authored-by: Jorge Aparicio <jorge.aparicio@ferrous-systems.com>
2 parents f32038d + 7de6f79 commit 1d6c207

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/).
77

88
## [Unreleased]
99

10+
## [v0.5.3] - 2020-01-27
11+
12+
### Added
13+
14+
- Extend the ARMv7-A `Pool` support to the bare-metal `armv7a-` targets.
15+
1016
## [v0.5.2] - 2020-01-15
1117

1218
### Fixed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ keywords = [
1717
license = "MIT OR Apache-2.0"
1818
name = "heapless"
1919
repository = "https://github.com/japaric/heapless"
20-
version = "0.5.2"
20+
version = "0.5.3"
2121

2222
[features]
2323
default = ["cas"]

build.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ fn main() -> Result<(), Box<dyn Error>> {
1717
println!("cargo:rustc-cfg=armv8m_base");
1818
} else if target.starts_with("thumbv8m.main") {
1919
println!("cargo:rustc-cfg=armv8m_main");
20-
} else if target.starts_with("armv7-") {
20+
} else if target.starts_with("armv7-") | target.starts_with("armv7a-") {
2121
println!("cargo:rustc-cfg=armv7a");
2222
}
2323

0 commit comments

Comments
 (0)