gecko-dev/servo/mach.bat
UK992 a2185dc366 servo: Merge #15319 - Fix hardcoded path to link.exe (from UK992:win32); r=emilio,larsbergstrom
Fixes https://github.com/servo/servo/issues/15228

Source-Repo: https://github.com/servo/servo
Source-Revision: 7753448cfc760a90eb184d0bfe83730fd2853f4b

--HG--
extra : subtree_source : https%3A//hg.mozilla.org/projects/converted-servo-linear
extra : subtree_revision : bbbe73cbc3784657e7294c8db22024f85b80ed34
2017-02-03 09:59:11 -08:00

20 lines
435 B
Batchfile

@echo off
SET VS_VCVARS=%VS140COMNTOOLS%..\..\VC\vcvarsall.bat
IF EXIST "%VS_VCVARS%" (
IF NOT DEFINED Platform (
IF EXIST "%ProgramFiles(x86)%" (
call "%VS_VCVARS%" x64
) ELSE (
ECHO 32-bit Windows is currently unsupported.
EXIT /B
)
)
) ELSE (
ECHO Visual Studio 2015 is not installed.
ECHO Download and install Visual Studio 2015 from https://www.visualstudio.com/
EXIT /B
)
python mach %*