mirror of
https://github.com/servo/servo.git
synced 2025-06-08 00:23:30 +00:00
Change to use msvc triple for Windows Python
This commit is contained in:
parent
cb62b5dd26
commit
ce2447f921
1 changed files with 3 additions and 1 deletions
|
@ -41,7 +41,9 @@ def host_triple():
|
|||
os_type = "apple-darwin"
|
||||
elif os_type == "android":
|
||||
os_type = "linux-androideabi"
|
||||
elif os_type == "windows" or os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
|
||||
elif os_type == "windows":
|
||||
os_type = "pc-windows-msvc"
|
||||
elif os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
|
||||
os_type = "pc-windows-gnu"
|
||||
elif os_type == "freebsd":
|
||||
os_type = "unknown-freebsd"
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue