Skip to content

Commit 77c9441

Browse files
authored
Add cross-compiler prefix for armv7 without hf (#515)
Was trying to cross-compile to as many Rust targets as feasible for testing, discovered this was missing.
1 parent 7859697 commit 77c9441

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

src/lib.rs

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2263,6 +2263,7 @@ impl Build {
22632263
"arm-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
22642264
"arm-unknown-netbsd-eabi" => Some("arm--netbsdelf-eabi"),
22652265
"armv6-unknown-netbsd-eabihf" => Some("armv6--netbsdelf-eabihf"),
2266+
"armv7-unknown-linux-gnueabi" => Some("arm-linux-gnueabi"),
22662267
"armv7-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),
22672268
"armv7-unknown-linux-musleabihf" => Some("arm-linux-musleabihf"),
22682269
"armv7neon-unknown-linux-gnueabihf" => Some("arm-linux-gnueabihf"),

0 commit comments

Comments
 (0)