forked from andreasvc/pyre2
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chg: pkg: add env support for toolchain file, update windows ci env
Signed-off-by: Stephen L Arnold <[email protected]>
- Loading branch information
Showing
5 changed files
with
35 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
@echo off | ||
|
||
SET VSWHERE="C:\Program Files (x86)\Microsoft Visual Studio\Installer\vswhere" | ||
|
||
:: See https://github.com/microsoft/vswhere/wiki/Find-VC | ||
for /f "usebackq delims=*" %%i in (`%VSWHERE% -latest -property installationPath`) do ( | ||
call "%%i\VC\Auxiliary\Build\vcvarsall.bat" %* | ||
) | ||
|
||
bash -c "export -p > env.sh" |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters