Skip to content

Commit 33b2c54

Browse files
author
Git for Windows Build Agent
committed
Update 7 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) Signed-off-by: Git for Windows Build Agent <[email protected]>
1 parent ab1c603 commit 33b2c54

File tree

91 files changed

+74
-61
lines changed

Some content is hidden

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

91 files changed

+74
-61
lines changed

etc/rebase.db.i386

0 Bytes
Binary file not shown.

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. */

mingw32/include/memoryapi.h

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -159,7 +159,9 @@ extern "C" {
159159

160160
#if NTDDI_VERSION >= NTDDI_WIN10_RS2
161161
WINBASEAPI PVOID WINAPI MapViewOfFileNuma2(HANDLE FileMappingHandle, HANDLE ProcessHandle, ULONG64 Offset, PVOID BaseAddress, SIZE_T ViewSize, ULONG AllocationType, ULONG PageProtection, ULONG PreferredNode);
162-
WINBASEAPI PVOID MapViewOfFile2(HANDLE FileMappingHandle, HANDLE ProcessHandle, ULONG64 Offset, PVOID BaseAddress, SIZE_T ViewSize, ULONG AllocationType, ULONG PageProtection);
162+
FORCEINLINE PVOID MapViewOfFile2(HANDLE FileMappingHandle, HANDLE ProcessHandle, ULONG64 Offset, PVOID BaseAddress, SIZE_T ViewSize, ULONG AllocationType, ULONG PageProtection) {
163+
return MapViewOfFileNuma2(FileMappingHandle, ProcessHandle, Offset, BaseAddress, ViewSize, AllocationType, PageProtection, NUMA_NO_PREFERRED_NODE);
164+
}
163165
#endif
164166

165167
#if NTDDI_VERSION >= NTDDI_WIN10_RS4

mingw32/include/setjmp.h

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -224,21 +224,21 @@ void * __cdecl __attribute__ ((__nothrow__)) mingw_getsp (void);
224224
#ifndef _INC_SETJMPEX
225225
# if defined(_X86_) || defined(__i386__)
226226
# define setjmp(BUF) _setjmp3((BUF), NULL)
227-
# elif ((defined(_ARM_) || defined(__arm__) || defined(_ARM64_) || defined(__aarch64__)) && (!defined(__SEH__) || !__has_builtin(__builtin_sponentry) || defined(__USE_MINGW_SETJMP_NON_SEH)))
228-
# define setjmp(BUF) __mingw_setjmp((BUF))
229-
# define longjmp __mingw_longjmp
230-
int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) __mingw_setjmp(jmp_buf _Buf);
231-
__MINGW_ATTRIB_NORETURN __attribute__ ((__nothrow__)) void __mingw_longjmp(jmp_buf _Buf,int _Value);
232-
# elif defined(__SEH__) && !defined(__USE_MINGW_SETJMP_NON_SEH)
233-
# if defined(__aarch64__) || defined(_ARM64_) || defined(__arm__) || defined(_ARM_)
234-
# define setjmp(BUF) _setjmp((BUF), __builtin_sponentry())
235-
# elif (__MINGW_GCC_VERSION < 40702) && !defined(__clang__)
236-
# define setjmp(BUF) _setjmp((BUF), mingw_getsp())
227+
# elif !defined(__SEH__) || defined(__USE_MINGW_SETJMP_NON_SEH)
228+
# if defined(__arm__) || defined(__aarch64__)
229+
# define setjmp(BUF) __mingw_setjmp((BUF))
230+
# define longjmp __mingw_longjmp
231+
int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) __mingw_setjmp(jmp_buf _Buf);
232+
__MINGW_ATTRIB_NORETURN __attribute__ ((__nothrow__)) void __mingw_longjmp(jmp_buf _Buf,int _Value);
237233
# else
238-
# define setjmp(BUF) _setjmp((BUF), __builtin_frame_address (0))
234+
# define setjmp(BUF) _setjmp((BUF), NULL)
239235
# endif
236+
# elif __has_builtin(__builtin_sponentry)
237+
# define setjmp(BUF) _setjmp((BUF), __builtin_sponentry())
238+
# elif (__MINGW_GCC_VERSION < 40702) && !defined(__clang__)
239+
# define setjmp(BUF) _setjmp((BUF), mingw_getsp())
240240
# else
241-
# define setjmp(BUF) _setjmp((BUF), NULL)
241+
# define setjmp(BUF) _setjmp((BUF), __builtin_frame_address (0))
242242
# endif
243243
int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmp(jmp_buf _Buf, void *_Ctx);
244244
int __cdecl __attribute__ ((__nothrow__,__returns_twice__)) _setjmp3(jmp_buf _Buf, void *_Ctx);

mingw32/include/stdlib.h

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -458,12 +458,10 @@ float __cdecl __MINGW_NOTHROW strtof(const char * __restrict__ _Str,char ** __re
458458
_CRTIMP void *__cdecl _aligned_offset_malloc(size_t _Size,size_t _Alignment,size_t _Offset);
459459
_CRTIMP void *__cdecl _aligned_realloc(void *_Memory,size_t _Size,size_t _Alignment);
460460
_CRTIMP void *__cdecl _aligned_offset_realloc(void *_Memory,size_t _Size,size_t _Alignment,size_t _Offset);
461-
# if __MSVCRT_VERSION__ >= 0x900
462461
_CRTIMP void *__cdecl _recalloc(void *_Memory,size_t _Count,size_t _Size);
463462
_CRTIMP void *__cdecl _aligned_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment);
464463
_CRTIMP void *__cdecl _aligned_offset_recalloc(void *_Memory,size_t _Count,size_t _Size,size_t _Alignment,size_t _Offset);
465464
_CRTIMP size_t __cdecl _aligned_msize(void *_Memory,size_t _Alignment,size_t _Offset);
466-
# endif
467465

468466
#if defined(_DEBUG) && defined(_CRTDBG_MAP_ALLOC)
469467
#pragma pop_macro("calloc")

mingw32/include/winnt.h

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9125,27 +9125,27 @@ DEFINE_ENUM_FLAG_OPERATORS(JOB_OBJECT_IO_RATE_CONTROL_FLAGS)
91259125
#endif
91269126

91279127
#if WINAPI_FAMILY_PARTITION (WINAPI_PARTITION_APP)
9128-
NTSYSAPI VOID NTAPI RtlUnwind (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue);
9128+
NTSYSAPI VOID NTAPI __MINGW_ATTRIB_NORETURN RtlUnwind (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue);
91299129
NTSYSAPI PVOID NTAPI RtlPcToFileHeader (PVOID PcValue, PVOID *BaseOfImage);
91309130
#if defined (__x86_64__)
91319131
NTSYSAPI PRUNTIME_FUNCTION NTAPI RtlLookupFunctionEntry (DWORD64 ControlPc, PDWORD64 ImageBase, PUNWIND_HISTORY_TABLE HistoryTable);
9132-
NTSYSAPI VOID NTAPI RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
9132+
NTSYSAPI VOID NTAPI __MINGW_ATTRIB_NORETURN RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
91339133
NTSYSAPI PEXCEPTION_ROUTINE NTAPI RtlVirtualUnwind (DWORD HandlerType, DWORD64 ImageBase, DWORD64 ControlPc, PRUNTIME_FUNCTION FunctionEntry, PCONTEXT ContextRecord, PVOID *HandlerData, PDWORD64 EstablisherFrame, PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
91349134
NTSYSAPI BOOLEAN NTAPI RtlIsEcCode(DWORD64 CodePointer);
91359135
#endif
91369136
#if defined (__arm__)
91379137
NTSYSAPI PRUNTIME_FUNCTION NTAPI RtlLookupFunctionEntry (ULONG_PTR ControlPc, PDWORD ImageBase, PUNWIND_HISTORY_TABLE HistoryTable);
9138-
NTSYSAPI VOID NTAPI RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
9138+
NTSYSAPI VOID NTAPI __MINGW_ATTRIB_NORETURN RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
91399139
NTSYSAPI PEXCEPTION_ROUTINE NTAPI RtlVirtualUnwind (DWORD HandlerType, DWORD ImageBase, DWORD ControlPc, PRUNTIME_FUNCTION FunctionEntry, PCONTEXT ContextRecord, PVOID *HandlerData, PDWORD EstablisherFrame, PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
91409140
#endif
91419141
#if defined (__aarch64__)
91429142
NTSYSAPI PRUNTIME_FUNCTION NTAPI RtlLookupFunctionEntry (ULONG_PTR ControlPc, PULONG_PTR ImageBase, PUNWIND_HISTORY_TABLE HistoryTable);
9143-
NTSYSAPI VOID NTAPI RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
9143+
NTSYSAPI VOID NTAPI __MINGW_ATTRIB_NORETURN RtlUnwindEx (PVOID TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
91449144
NTSYSAPI PEXCEPTION_ROUTINE NTAPI RtlVirtualUnwind (DWORD HandlerType, ULONG_PTR ImageBase, ULONG_PTR ControlPc, PRUNTIME_FUNCTION FunctionEntry, PCONTEXT ContextRecord, PVOID *HandlerData, PULONG_PTR EstablisherFrame, PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
91459145
#endif
91469146
#if defined (__ia64__)
91479147
NTSYSAPI PRUNTIME_FUNCTION NTAPI RtlLookupFunctionEntry (ULONGLONG ControlPc, PULONGLONG ImageBase, PULONGLONG TargetGp);
9148-
NTSYSAPI VOID NTAPI RtlUnwindEx (FRAME_POINTERS TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
9148+
NTSYSAPI VOID NTAPI __MINGW_ATTRIB_NORETURN RtlUnwindEx (FRAME_POINTERS TargetFrame, PVOID TargetIp, PEXCEPTION_RECORD ExceptionRecord, PVOID ReturnValue, PCONTEXT ContextRecord, PUNWIND_HISTORY_TABLE HistoryTable);
91499149
NTSYSAPI ULONGLONG NTAPI RtlVirtualUnwind (ULONGLONG ImageBase, ULONGLONG ControlPc, PRUNTIME_FUNCTION FunctionEntry, PCONTEXT ContextRecord, PBOOLEAN InFunction, PFRAME_POINTERS EstablisherFrame, PKNONVOLATILE_CONTEXT_POINTERS ContextPointers);
91509150
#endif
91519151
#endif

mingw32/lib/libcrtdll.a

27.7 KB
Binary file not shown.

mingw32/lib/libgmon.a

0 Bytes
Binary file not shown.

mingw32/lib/libmingwex.a

960 Bytes
Binary file not shown.

mingw32/lib/libmsvcr100.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr100d.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr110.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr110d.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr120.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr120_app.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr120d.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr40d.a

27.7 KB
Binary file not shown.

mingw32/lib/libmsvcr70.a

13.6 KB
Binary file not shown.

mingw32/lib/libmsvcr70d.a

13.6 KB
Binary file not shown.

mingw32/lib/libmsvcr71.a

13.6 KB
Binary file not shown.

mingw32/lib/libmsvcr71d.a

13.6 KB
Binary file not shown.

mingw32/lib/libmsvcr80.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr80d.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr90.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcr90d.a

0 Bytes
Binary file not shown.

mingw32/lib/libmsvcrt-os.a

42.2 KB
Binary file not shown.

mingw32/lib/libmsvcrt.a

42.2 KB
Binary file not shown.

mingw32/lib/libmsvcrt10.a

27.7 KB
Binary file not shown.

mingw32/lib/libmsvcrt20.a

27.7 KB
Binary file not shown.

mingw32/lib/libmsvcrt40.a

27.7 KB
Binary file not shown.

mingw32/lib/libmsvcrtd.a

27.7 KB
Binary file not shown.

mingw32/lib/libucrt.a

0 Bytes
Binary file not shown.

mingw32/lib/libucrtapp.a

0 Bytes
Binary file not shown.

mingw32/lib/libucrtbase.a

0 Bytes
Binary file not shown.

mingw32/lib/libucrtbased.a

0 Bytes
Binary file not shown.

mingw32/share/info/annotate.info.gz

15.1 KB
Binary file not shown.

mingw32/share/info/gdb.info.gz

686 KB
Binary file not shown.

mingw32/share/info/stabs.info.gz

53.5 KB
Binary file not shown.
2.26 KB
Binary file not shown.

mingw32/share/man/man1/gdb.1.gz

4.89 KB
Binary file not shown.

mingw32/share/man/man1/gdbserver.1.gz

4.22 KB
Binary file not shown.

mingw32/share/man/man1/gstack.1.gz

1.87 KB
Binary file not shown.

mingw32/share/man/man5/gdbinit.5.gz

1.99 KB
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-crt-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-crt-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-crt-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-crt-git
@@ -17,16 +17,16 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744103472
20+
1745529052
2121

2222
%INSTALLDATE%
23-
1744255940
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
29-
129164313
29+
129477529
3030

3131
%GROUPS%
3232
mingw-w64-i686-toolchain
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-gdb-16.2-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-gdb-16.3-1/desc

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-gdb
33

44
%VERSION%
5-
16.2-1
5+
16.3-1
66

77
%BASE%
88
mingw-w64-gdb
@@ -17,16 +17,16 @@ https://www.gnu.org/software/gdb/
1717
any
1818

1919
%BUILDDATE%
20-
1738438974
20+
1745442546
2121

2222
%INSTALLDATE%
23-
1738466316
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/b4421681/13091824887)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14628098762)
2727

2828
%SIZE%
29-
14739703
29+
15525653
3030

3131
%GROUPS%
3232
mingw-w64-i686-toolchain
@@ -56,3 +56,6 @@ mingw-w64-i686-zstd
5656
%OPTDEPENDS%
5757
mingw-w64-i686-python-pygments: for syntax highlighting
5858

59+
%XDATA%
60+
pkgtype=split
61+

var/lib/pacman/local/mingw-w64-i686-gdb-16.2-1/files renamed to var/lib/pacman/local/mingw-w64-i686-gdb-16.3-1/files

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -90,6 +90,10 @@ mingw32/share/gdb/syscalls/sparc64-linux.xml
9090
mingw32/share/gdb/system-gdbinit/
9191
mingw32/share/gdb/system-gdbinit/elinos.py
9292
mingw32/share/gdb/system-gdbinit/wrs-linux.py
93+
mingw32/share/info/
94+
mingw32/share/info/annotate.info.gz
95+
mingw32/share/info/gdb.info.gz
96+
mingw32/share/info/stabs.info.gz
9397
mingw32/share/locale/
9498
mingw32/share/locale/da/
9599
mingw32/share/locale/da/LC_MESSAGES/
@@ -175,4 +179,12 @@ mingw32/share/locale/zh_CN/
175179
mingw32/share/locale/zh_CN/LC_MESSAGES/
176180
mingw32/share/locale/zh_CN/LC_MESSAGES/bfd.mo
177181
mingw32/share/locale/zh_CN/LC_MESSAGES/opcodes.mo
182+
mingw32/share/man/
183+
mingw32/share/man/man1/
184+
mingw32/share/man/man1/gdb-add-index.1.gz
185+
mingw32/share/man/man1/gdb.1.gz
186+
mingw32/share/man/man1/gdbserver.1.gz
187+
mingw32/share/man/man1/gstack.1.gz
188+
mingw32/share/man/man5/
189+
mingw32/share/man/man5/gdbinit.5.gz
178190

Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-git-extra-1.1.653.48e2403b3-1/desc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ any
2020
1741195626
2121

2222
%INSTALLDATE%
23-
1745379302
23+
1745638236
2424

2525
%PACKAGER%
2626
Johannes Schindelin <[email protected]>
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-headers-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-headers-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-headers-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-headers-git
@@ -17,16 +17,16 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744103335
20+
1745528887
2121

2222
%INSTALLDATE%
23-
1744255939
23+
1745638231
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
29-
90714611
29+
90714730
3030

3131
%GROUPS%
3232
mingw-w64-i686-toolchain
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-libmangle-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-libmangle-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-libmangle-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-libmangle-git
@@ -17,13 +17,13 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744104017
20+
1745529684
2121

2222
%INSTALLDATE%
23-
1744255940
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
2929
52797
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-libwinpthread-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-libwinpthread-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-libwinpthread-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-winpthreads-git
@@ -17,13 +17,13 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744103868
20+
1745529480
2121

2222
%INSTALLDATE%
23-
1744255940
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
2929
75118
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-tools-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-tools-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-tools-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-tools-git
@@ -17,13 +17,13 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744104118
20+
1745529849
2121

2222
%INSTALLDATE%
23-
1744255940
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
2929
1054416
Binary file not shown.
Binary file not shown.

var/lib/pacman/local/mingw-w64-i686-winpthreads-git-12.0.0.r657.g1e8b1ccdd-1/desc renamed to var/lib/pacman/local/mingw-w64-i686-winpthreads-git-12.0.0.r679.g71699efcb-1/desc

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
mingw-w64-i686-winpthreads-git
33

44
%VERSION%
5-
12.0.0.r657.g1e8b1ccdd-1
5+
12.0.0.r679.g71699efcb-1
66

77
%BASE%
88
mingw-w64-winpthreads-git
@@ -17,13 +17,13 @@ https://www.mingw-w64.org/
1717
any
1818

1919
%BUILDDATE%
20-
1744103868
20+
1745529480
2121

2222
%INSTALLDATE%
23-
1744255940
23+
1745638232
2424

2525
%PACKAGER%
26-
CI (msys2/msys2-autobuild/23845c53/14329588580)
26+
CI (msys2/msys2-autobuild/e8d10d7e/14651666126)
2727

2828
%SIZE%
2929
413758
@@ -40,7 +40,7 @@ pgp
4040

4141
%DEPENDS%
4242
mingw-w64-i686-crt-git
43-
mingw-w64-i686-libwinpthread-git=12.0.0.r657.g1e8b1ccdd
43+
mingw-w64-i686-libwinpthread-git=12.0.0.r679.g71699efcb
4444

4545
%CONFLICTS%
4646
mingw-w64-i686-winpthreads
Binary file not shown.

var/lib/pacman/sync/clang64.db

-579 Bytes
Binary file not shown.

var/lib/pacman/sync/clang64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/clangarm64.db

1.08 KB
Binary file not shown.

var/lib/pacman/sync/clangarm64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db

91 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw32.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw64.db

99 Bytes
Binary file not shown.

var/lib/pacman/sync/mingw64.db.sig

0 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db

-129 Bytes
Binary file not shown.

var/lib/pacman/sync/ucrt64.db.sig

0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)