Skip to content

Commit

Permalink
Merge pull request #63 from varphone/develop
Browse files Browse the repository at this point in the history
Support new tier 3 *-win7-windows-msvc targets
  • Loading branch information
pkgw authored Feb 1, 2025
2 parents 79f292f + 39d8d79 commit fa42994
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1382,7 +1382,7 @@ fn detect_target_triplet() -> Result<TargetTriplet, Error> {
lib_suffix: "a".into(),
strip_lib_prefix: true,
})
} else if !target.contains("-pc-windows-msvc") {
} else if !target.contains("-pc-windows-msvc") && !target.contains("-win7-windows-msvc") {
Err(Error::NotMSVC)
} else if target.starts_with("x86_64-") {
if is_static {
Expand Down

0 comments on commit fa42994

Please sign in to comment.