Skip to content

Commit b0f9191

Browse files
author
Git for Windows Build Agent
committed
Update 2 packages
mingw-w64-i686-gdb (17.1-5 -> 17.2-1) mingw-w64-i686-tzdata (2026a-1 -> 2026b-1) Signed-off-by: Git for Windows Build Agent <ci@git-for-windows.build>
1 parent 75008cf commit b0f9191

54 files changed

Lines changed: 36 additions & 20 deletions

File tree

Some content is hidden

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

mingw32/bin/gdb-add-index

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ OBJCOPY=${OBJCOPY:=objcopy}
2323
READELF=${READELF:=readelf}
2424

2525
PKGVERSION="(GDB) "
26-
VERSION="17.1"
26+
VERSION="17.2"
2727

2828
myname="${0##*/}"
2929

mingw32/bin/gdb.exe

2 KB
Binary file not shown.

mingw32/bin/gdbserver.exe

1 KB
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="17.1"
26+
VERSION="17.2"
2727

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

mingw32/share/gdb/python/gdb/dap/varref.py

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -146,10 +146,12 @@ def fetch_children(self, start, count):
146146
if self._children is None:
147147
self._children = [None] * self.child_count()
148148
for idx in range(start, start + count):
149+
# DAP was clarified to say that if too many children are
150+
# requested, this is not an error, but instead the result
151+
# is just truncated.
152+
# https://github.com/microsoft/debug-adapter-protocol/issues/571
149153
if idx >= len(self._children):
150-
raise DAPException(
151-
f"requested child {idx} outside range of variable {self._ref}"
152-
)
154+
break
153155
if self._children[idx] is None:
154156
(name, value) = self.fetch_one_child(idx)
155157
name = self._compute_name(name)
1 Byte
Binary file not shown.

mingw32/share/info/gdb.info-1.gz

89.8 KB
Binary file not shown.

mingw32/share/info/gdb.info-2.gz

79.5 KB
Binary file not shown.

mingw32/share/info/gdb.info-3.gz

87.4 KB
Binary file not shown.

mingw32/share/info/gdb.info-4.gz

82.1 KB
Binary file not shown.

0 commit comments

Comments
 (0)