https://sourceware.org/bugzilla/show_bug.cgi?id=33033
--- Comment #2 from Sourceware Commits <cvs-commit at gcc dot gnu.org> --- The master branch has been updated by Alan Modra <amo...@sourceware.org>: https://sourceware.org/git/gitweb.cgi?p=binutils-gdb.git;h=0921b99dafd5a754468974831f8a016e10a85fb7 commit 0921b99dafd5a754468974831f8a016e10a85fb7 Author: Rui Ueyama <rui...@gmail.com> Date: Sat May 31 21:16:34 2025 +0900 PR 33033, Support compressed debug sections larger than 4 GiB z_stream's avail_in and avail_out are defined as "unsigned int", so it cannot decode an entire compressed stream in one pass if the stream is larger than 4 GiB. The simplest solution to this problem is to use zlib's convenient uncompress2() function, which handles the details for us. Signed-off-by: Rui Ueyama <rui...@gmail.com> -- You are receiving this mail because: You are on the CC list for the bug.