Update appveyor config
This commit is contained in:
parent
e528d7af04
commit
6ed5906054
1 changed files with 5 additions and 1 deletions
|
@ -19,12 +19,16 @@ install:
|
||||||
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
|
- call "C:\Program Files (x86)\Microsoft Visual Studio 12.0\VC\vcvarsall.bat" amd64
|
||||||
- ps: $env:path = "C:\Rust\bin;" + $env:path
|
- ps: $env:path = "C:\Rust\bin;" + $env:path
|
||||||
- ps: |
|
- ps: |
|
||||||
if ($env:RUST_INSTALL_TRIPLE -like "*-gnu") {
|
if ($env:RUST_INSTALL_TRIPLE -like "x86_64-*-gnu") {
|
||||||
Start-FileDownload "http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/5.1.0/threads-win32/seh/x86_64-5.1.0-release-win32-seh-rt_v4-rev0.7z/download" -FileName mingw64.7z
|
Start-FileDownload "http://sourceforge.net/projects/mingw-w64/files/Toolchains%20targetting%20Win64/Personal%20Builds/mingw-builds/5.1.0/threads-win32/seh/x86_64-5.1.0-release-win32-seh-rt_v4-rev0.7z/download" -FileName mingw64.7z
|
||||||
7z x -oC:\ mingw64.7z > $null
|
7z x -oC:\ mingw64.7z > $null
|
||||||
$env:path = "C:\mingw64\bin;" + $env:path
|
$env:path = "C:\mingw64\bin;" + $env:path
|
||||||
gcc --version
|
gcc --version
|
||||||
}
|
}
|
||||||
|
elseif ($env:RUST_INSTALL_TRIPLE -like "i686-*-gnu") {
|
||||||
|
$env:path = "C:\mingw\bin;" + $env:path
|
||||||
|
gcc --version
|
||||||
|
}
|
||||||
- rustc --version --verbose
|
- rustc --version --verbose
|
||||||
- cargo --version
|
- cargo --version
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue