File tree 4 files changed +7
-3
lines changed
4 files changed +7
-3
lines changed Original file line number Diff line number Diff line change 37
37
variables :
38
38
VSINSTALLDIR : C:\Program Files (x86)\Microsoft Visual Studio\2017\Enterprise\
39
39
# NB: update windows/build_mingw.sha256sums as well
40
- MINGW_VER : 7 .0.0
40
+ MINGW_VER : 8 .0.0
41
41
D_VERSION : 2.077.1
42
42
steps :
43
43
- template : .azure-pipelines/build-mingw-libs.yml
Original file line number Diff line number Diff line change 3
3
set ROOT = %CD%
4
4
mkdir " %ROOT% \artifacts"
5
5
6
- set TAG = mingw-libs-%MINGW_VER% -3
6
+ set TAG = mingw-libs-%MINGW_VER%
7
7
set ARTIFACT = %TAG% .zip
8
8
set ARTIFACTPATH = %ROOT% \artifacts\%ARTIFACT%
9
9
set GITHUB_RELEASE = https://github.com/dlang/installer/releases/download/%TAG% /%ARTIFACT%
Original file line number Diff line number Diff line change 1
- aa20dfff3596f08a7f427aab74315a6cb80c2b086b4a107ed35af02f9496b628 mingw-w64.tar.bz2
1
+ 44c740ea6ab3924bc3aa169bad11ad3c5766c5c8459e3126d44eabb8735a5762 mingw-w64.tar.bz2
Original file line number Diff line number Diff line change @@ -164,6 +164,10 @@ void sanitizeDef(string defFile)
164
164
if (line == " ExtractIconW@" )
165
165
return " ;ExtractIconW@" ;
166
166
167
+ // Apparent bugs in lib32/api-ms-win-*.def - missing stdcall params size suffix.
168
+ if (line[$- 1 ] == ' @' && baseName(defFile).startsWith(" api-ms-win-" ))
169
+ return " ;" ~ line;
170
+
167
171
return line;
168
172
});
169
173
}
You can’t perform that action at this time.
0 commit comments