From ce2447f921527a26cf3b33c16b0d905bb0a7074c Mon Sep 17 00:00:00 2001 From: Xidorn Quan Date: Mon, 11 Jul 2016 11:28:45 +1000 Subject: Change to use msvc triple for Windows Python --- python/servo/command_base.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'python/servo/command_base.py') diff --git a/python/servo/command_base.py b/python/servo/command_base.py index a814f58fbf9..328d0965b65 100644 --- a/python/servo/command_base.py +++ b/python/servo/command_base.py @@ -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" -- cgit v1.2.3