Skip to content

Commit 5ada387

Browse files
committed
add support for thumbv7a-pc-windows-msvc
1 parent d99f35e commit 5ada387

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -734,7 +734,7 @@ impl Config {
734734
),
735735
Err(msg) => panic!(msg),
736736
};
737-
if target.contains("i686") || target.contains("x86_64") {
737+
if target.contains("i686") || target.contains("x86_64") || target.contains("thumbv7a") {
738738
base.to_string()
739739
} else {
740740
panic!("unsupported msvc target: {}", target);

0 commit comments

Comments
 (0)