Skip to content

Commit

Permalink
Change to use msvc triple for Windows Python
Browse files Browse the repository at this point in the history
  • Loading branch information
upsuper committed Jul 11, 2016
1 parent cb62b5d commit ce2447f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/servo/command_base.py
Expand Up @@ -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"
Expand Down

0 comments on commit ce2447f

Please sign in to comment.