[Bug tools/23787] eu-size: Bad handling of ar files inside are files

2020-10-25 Thread vanessarose786 at gmail dot com via Elfutils-devel
https://sourceware.org/bugzilla/show_bug.cgi?id=23787 vanessa786 changed: What|Removed |Added CC||vanessarose786 at gmail dot com --- Comm

[RFC] [PATCH] Use numeric permissions directly.

2020-10-25 Thread Érico Nogueira via Elfutils-devel
musl doesn't define ALLPERMS and ACESSPERMS macros, and the code already uses literals for these same values in some place. This commit applies the same style to the whole project. Signed-off-by: Érico Rolim --- This commit can go the other way as well, by adding blocks like /* musl libc doesn

[PATCH] Don't use locale functions when libintl header isn't included.

2020-10-25 Thread Érico Nogueira via Elfutils-devel
debuginfod.cxx used the bindtextdomain() and textdomain() functions despite not including any translated output. These functions were also used without including the libintl.h header. Signed-off-by: Érico Rolim --- debuginfod/debuginfod.cxx | 2 -- 1 file changed, 2 deletions(-) diff --git a/de

[PATCH] Support building when fts and obstack aren't part of libc.

2020-10-25 Thread Érico Nogueira via Elfutils-devel
- Make configure.ac test for fts and obstack availability; - Add fts and obstack ldflags to all files that need them; - Add missing argp ldflags to programs in debuginfod/. Signed-off-by: Érico Rolim --- This is the start of a series of patches that can enable elfutils to be built on musl-based

Re: [PATCH] debuginfod: Translate CURLE_PEER_FAILED_VERIFICATION to ECONNREFUSED.

2020-10-25 Thread Frank Ch. Eigler via Elfutils-devel
Hi - > When a file couldn't be retrieved because of an bad HTTPS certificate > find-debuginfod currently says: > Server query failed: No such file or directory > With this patch it will say: > Server query failed: Connection refused Sure - or could use something like -EPROTO "Protocol error". -

Re: [PATCH] Fix bug in read_3ubyte_unaligned_inc

2020-10-25 Thread Mark Wielaard
On Sat, Oct 24, 2020 at 03:05:55PM -0600, Tom Tromey wrote: > Mark> Clearly DW_FORM_strx3 and DW_FORM_addrx3 aren't used much > Mark> (given that it is an index value between larger than 65536). > > I don't even really see the need for a 3-byte form. > Anyway if it helps, gdb gets this wrong too -

[PATCH] debuginfod: Translate CURLE_PEER_FAILED_VERIFICATION to ECONNREFUSED.

2020-10-25 Thread Mark Wielaard
When a file couldn't be retrieved because of an bad HTTPS certificate find-debuginfod currently says: Server query failed: No such file or directory With this patch it will say: Server query failed: Connection refused Signed-off-by: Mark Wielaard --- debuginfod/ChangeLog| 5 + d