Skip to content

Commit 8ba8998

Browse files
author
Git for Windows Build Agent
committed
Update 14 packages
mingw-w64-i686-crt-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-i686-gdb (16.2-1 -> 16.3-1) mingw-w64-i686-headers-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-i686-libmangle-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-i686-libwinpthread-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-i686-tools-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-i686-winpthreads-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-crt-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-gdb (16.2-1 -> 16.3-1) mingw-w64-x86_64-headers-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-libmangle-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-libwinpthread-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-tools-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) mingw-w64-x86_64-winpthreads-git (12.0.0.r657.g1e8b1ccdd-1 -> 12.0.0.r679.g71699efcb-1) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent c9dfca3 commit 8ba8998

File tree

161 files changed

+141
-121
lines changed

Some content is hidden

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

161 files changed

+141
-121
lines changed

mingw32/bin/gdb.exe

-1.97 KB
Binary file not shown.

mingw32/bin/gdbserver.exe

-544 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: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
#!/usr/bin/env bash
22

3-
# Copyright (C) 2024 Free Software Foundation, Inc.
3+
# Copyright (C) 2024-2025 Free Software Foundation, Inc.
44

55
# This program is free software; you can redistribute it and/or modify
66
# it under the terms of the GNU General Public License as published by
@@ -22,8 +22,8 @@
2222
GDB=${GDB:-$(command -v gdb)}
2323
GDBARGS=${GDBARGS:-}
2424
AWK=${AWK:-}
25-
PKGVERSION=(GDB)
26-
VERSION=16.2
25+
PKGVERSION="(GDB) "
26+
VERSION="16.3"
2727

2828
# Find an appropriate awk interpreter if one was not specified
2929
# via the environment.
@@ -132,7 +132,7 @@ EOF
132132
)
133133

134134
# Run GDB and remove some unwanted noise.
135-
"$GDB" --quiet -nx --readnever $GDBARGS <<EOF |
135+
"$GDB" --quiet -nx $GDBARGS <<EOF |
136136
set width 0
137137
set height 0
138138
set pagination no

mingw32/bin/libwinpthread-1.dll

0 Bytes
Binary file not shown.

mingw32/bin/widl.exe

0 Bytes
Binary file not shown.

mingw32/include/crtdbg.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,12 +161,10 @@ extern "C" {
161161
#define _aligned_offset_malloc_dbg(s,a,o,f,l) _aligned_offset_malloc(s,a,o)
162162
#define _aligned_offset_realloc_dbg(p,s,a,o,f,l) _aligned_offset_realloc(p,s,a,o)
163163

164-
#if __MSVCRT_VERSION__ >= 0x900
165164
#define _recalloc_dbg(p,c,s,t,f,l) _recalloc(p,c,s)
166165
#define _aligned_recalloc_dbg(p,c,s,a,f,l) _aligned_realloc(p,c,s,a)
167166
#define _aligned_offset_recalloc_dbg(p,c,s,a,o,f,l) _aligned_offset_recalloc(p,c,s,a,o)
168167
#define _aligned_msize_dbg(p,a,o) _aligned_msize(p,a,o)
169-
#endif
170168

171169
#define _malloca_dbg(s,t,f,l) _malloca(s)
172170
#define _freea_dbg(p,t) _freea(p)

mingw32/include/malloc.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -102,12 +102,10 @@ extern "C" {
102102
_CRTIMP void *__cdecl _aligned_offset_malloc(size_t _Size,size_t _Alignment,size_t _Offset);
103103
_CRTIMP void *__cdecl _aligned_realloc(void *_Memory,size_t _Size,size_t _Alignment);
104104
_CRTIMP void *__cdecl _aligned_offset_realloc(void *_Memory,size_t _Size,size_t _Alignment,size_t _Offset);
105-
# if __MSVCRT_VERSION__ >= 0x900
106105
_CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
107106
_CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
108107
_CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
109108
_CRTIMP size_t __cdecl _aligned_msize(void *_Memory,size_t _Alignment,size_t _Offset);
110-
# endif
111109

112110
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
113111
#pragma pop_macro("calloc")
@@ -131,7 +129,9 @@ extern "C" {
131129
void * __mingw_aligned_malloc (size_t _Size, size_t _Alignment);
132130
void __mingw_aligned_free (void *_Memory);
133131
void * __mingw_aligned_offset_realloc (void *_Memory, size_t _Size, size_t _Alignment, size_t _Offset);
132+
void * __mingw_aligned_offset_malloc (size_t, size_t, size_t);
134133
void * __mingw_aligned_realloc (void *_Memory, size_t _Size, size_t _Offset);
134+
size_t __mingw_aligned_msize (void *memblock, size_t alignment, size_t offset);
135135

136136
#if defined(__x86_64__) || defined(__i386__)
137137
/* Get the compiler's definition of _mm_malloc and _mm_free. */

0 commit comments

Comments
 (0)