Skip to content

Commit 76a2f97

Browse files
author
Git for Windows Build Agent
committed
Update 7 packages
mingw-w64-i686-crt-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-gdb (16.1-1 -> 16.2-1) mingw-w64-i686-headers-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-libmangle-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-libwinpthread-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-tools-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) mingw-w64-i686-winpthreads-git (12.0.0.r473.gce0d0bfb7-1 -> 12.0.0.r480.gea22a99cb-1) Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
1 parent 97c69ed commit 76a2f97

File tree

64 files changed

+45
-42
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+45
-42
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

mingw32/bin/gdb.exe

1 KB
Binary file not shown.

mingw32/bin/gdbserver.exe

0 Bytes
Binary file not shown.

mingw32/bin/gendef.exe

0 Bytes
Binary file not shown.

mingw32/bin/genidl.exe

0 Bytes
Binary file not shown.

mingw32/bin/genpeimg.exe

0 Bytes
Binary file not shown.

mingw32/bin/gstack

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ GDB=${GDB:-$(command -v gdb)}
2323
GDBARGS=${GDBARGS:-}
2424
AWK=${AWK:-}
2525
PKGVERSION=(GDB)
26-
VERSION=16.1
26+
VERSION=16.2
2727

2828
# Find an appropriate awk interpreter if one was not specified
2929
# via the environment.

mingw32/bin/libwinpthread-1.dll

0 Bytes
Binary file not shown.

mingw32/bin/widl.exe

0 Bytes
Binary file not shown.

mingw32/include/_mingw_mac.h

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@
77
#ifndef _INC_CRTDEFS_MACRO
88
#define _INC_CRTDEFS_MACRO
99

10+
#define __PASTE(x, y) x ## y
11+
#define __MINGW64_PASTE(x, y) __PASTE(x, y)
12+
1013
#define __STRINGIFY(x) #x
1114
#define __MINGW64_STRINGIFY(x) \
1215
__STRINGIFY(x)
@@ -123,14 +126,14 @@
123126
#endif /* ifndef _X86_ */
124127

125128
#if __MINGW_USE_UNDERSCORE_PREFIX == 0
126-
# define __MINGW_IMP_SYMBOL(sym) __imp_##sym
127-
# define __MINGW_IMP_LSYMBOL(sym) __imp_##sym
129+
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
130+
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp_,sym)
128131
# define __MINGW_USYMBOL(sym) sym
129-
# define __MINGW_LSYMBOL(sym) _##sym
132+
# define __MINGW_LSYMBOL(sym) __MINGW64_PASTE(_,sym)
130133
#else /* ! if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
131-
# define __MINGW_IMP_SYMBOL(sym) _imp__##sym
132-
# define __MINGW_IMP_LSYMBOL(sym) __imp__##sym
133-
# define __MINGW_USYMBOL(sym) _##sym
134+
# define __MINGW_IMP_SYMBOL(sym) __MINGW64_PASTE(_imp__,sym)
135+
# define __MINGW_IMP_LSYMBOL(sym) __MINGW64_PASTE(__imp__,sym)
136+
# define __MINGW_USYMBOL(sym) __MINGW64_PASTE(_,sym)
134137
# define __MINGW_LSYMBOL(sym) sym
135138
#endif /* if __MINGW_USE_UNDERSCORE_PREFIX == 0 */
136139

0 commit comments

Comments
 (0)