mirror of
https://github.com/servo/servo.git
synced 2025-06-20 07:08:59 +01:00
Fix test-wpt and test-css for Windows.
In addition to minor changes for Windows, this forces Windows Python to be used for all Windows builds (instead of using Windows Python only for pc-windows-msvc builds).
This commit is contained in:
parent
524ed82700
commit
8e8519d038
7 changed files with 104 additions and 19 deletions
|
@ -107,7 +107,10 @@ def host_triple():
|
|||
elif os_type == "android":
|
||||
os_type = "linux-androideabi"
|
||||
elif os_type == "windows":
|
||||
os_type = "pc-windows-msvc"
|
||||
if os.getenv("MSYSTEM") is None:
|
||||
os_type = "pc-windows-msvc"
|
||||
else:
|
||||
os_type = "pc-windows-gnu"
|
||||
elif os_type.startswith("mingw64_nt-") or os_type.startswith("cygwin_nt-"):
|
||||
os_type = "pc-windows-gnu"
|
||||
elif os_type == "freebsd":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue