-
Notifications
You must be signed in to change notification settings - Fork 7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[fbsync] .circleci: Fix windows cmath issues (#3609)
Summary: Signed-off-by: Eli Uriegas <eliuriegas@fb.com> Reviewed By: fmassa Differential Revision: D27433932 fbshipit-source-id: aa924160020b23b1041c5fc85f3c7410d191cce2
- Loading branch information
1 parent
00f8b7c
commit 5aa76e4
Showing
3 changed files
with
33 additions
and
0 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,5 @@ | ||
$CMATH_DOWNLOAD_LINK = "https://raw.githubusercontent.com/microsoft/STL/12c684bba78f9b032050526abdebf14f58ca26a3/stl/inc/cmath" | ||
$VC14_28_INSTALL_PATH="C:\Program Files (x86)\Microsoft Visual Studio\2019\Community\VC\Tools\MSVC\14.28.29910\include" | ||
|
||
curl.exe --retry 3 -kL $CMATH_DOWNLOAD_LINK --output "$home\cmath" | ||
Move-Item -Path "$home\cmath" -Destination "$VC14_28_INSTALL_PATH" -Force |