зеркало из https://github.com/mozilla/gecko-dev.git
servo: Merge #14303 - Use msvc toolchain when in Visual Studio env (from upsuper:triple-msvc); r=bholley
<!-- Please describe your changes on the following line: --> r? @bholley Source-Repo: https://github.com/servo/servo Source-Revision: e97804986ad259083981db7d4f7995d822d693b5
This commit is contained in:
Родитель
174dbcace7
Коммит
c2c884b3fc
|
@ -107,7 +107,8 @@ def host_triple():
|
|||
elif os_type == "android":
|
||||
os_type = "linux-androideabi"
|
||||
elif os_type == "windows":
|
||||
if os.getenv("MSYSTEM") is None:
|
||||
# If we are in a Visual Studio environment, use msvc
|
||||
if os.getenv("VSInstallDir") is not None:
|
||||
os_type = "pc-windows-msvc"
|
||||
else:
|
||||
os_type = "pc-windows-gnu"
|
||||
|
|
Загрузка…
Ссылка в новой задаче