File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -25,12 +25,11 @@ install:
25
25
if(!(gem which minitest 2>$nul)) { gem install minitest --no-ri --no-rdoc }
26
26
if ($env:Compiler -eq "mingw" -AND -Not (Test-Path "C:\mingw64")) {
27
27
# Install MinGW.
28
- $url = "http://sourceforge.net/projects/mingw-w64/files/"
29
- $url += "Toolchains%20targetting%20Win64/Personal%20Builds/"
30
- $url += "mingw-builds/4.9.2/threads-win32/seh/"
31
- $url += "x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z/download"
32
- Invoke-WebRequest -UserAgent wget -Uri $url -OutFile x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z
33
- &7z x -oC:\ x86_64-4.9.2-release-win32-seh-rt_v3-rev0.7z > $null
28
+ $file = "x86_64-4.9.2-release-win32-seh-rt_v4-rev3.7z"
29
+ $url = "https://bintray.com/artifact/download/drewwells/generic/"
30
+ $url += $file
31
+ Invoke-WebRequest -UserAgent wget -Uri $url -OutFile $file
32
+ &7z x -oC:\ $file > $null
34
33
}
35
34
- set PATH=C:\mingw64\bin;%PATH%
36
35
- set CC=gcc
You can’t perform that action at this time.
0 commit comments