We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents d99f35e + e555da9 commit ce6ca0eCopy full SHA for ce6ca0e
src/lib.rs
@@ -417,6 +417,9 @@ impl Config {
417
if target.contains("x86_64") {
418
cmd.arg("-Thost=x64");
419
cmd.arg("-Ax64");
420
+ } else if target.contains("thumbv7a") {
421
+ cmd.arg("-Thost=x64");
422
+ cmd.arg("-Aarm");
423
} else if target.contains("i686") {
424
use cc::windows_registry::{find_vs_version, VsVers};
425
match find_vs_version() {
@@ -734,7 +737,7 @@ impl Config {
734
737
),
735
738
Err(msg) => panic!(msg),
736
739
};
- if target.contains("i686") || target.contains("x86_64") {
740
+ if target.contains("i686") || target.contains("x86_64") || target.contains("thumbv7a") {
741
base.to_string()
742
} else {
743
panic!("unsupported msvc target: {}", target);
0 commit comments