Skip to content

Commit 9805096

Browse files
charliermarshindygreg
authored andcommitted
Upgrade armv7 builds to release
1 parent e37e463 commit 9805096

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/release.rs

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -114,6 +114,24 @@ pub static RELEASE_TRIPLES: Lazy<BTreeMap<&'static str, TripleRelease>> = Lazy::
114114
},
115115
);
116116

117+
h.insert(
118+
"armv7-unknown-linux-gnueabi",
119+
TripleRelease {
120+
suffixes: linux_suffixes_nopgo.clone(),
121+
install_only_suffix: "lto",
122+
python_version_requirement: Some(VersionReq::parse(">=3.9").unwrap()),
123+
},
124+
);
125+
126+
h.insert(
127+
"armv7-unknown-linux-gnueabihf",
128+
TripleRelease {
129+
suffixes: linux_suffixes_nopgo.clone(),
130+
install_only_suffix: "lto",
131+
python_version_requirement: Some(VersionReq::parse(">=3.9").unwrap()),
132+
},
133+
);
134+
117135
h.insert(
118136
"x86_64-unknown-linux-gnu",
119137
TripleRelease {

0 commit comments

Comments
 (0)