Re: Writing core files to contain buildids

2020-10-28 Thread Mark Wielaard
Hi Paul, On Wed, 2020-10-28 at 00:40 -0400, Paul Smith wrote: > On Tue, 2020-10-27 at 23:23 +0100, Mark Wielaard wrote: > > Do you have the generated core files somehwere so others can look > > at > > them? How exactly are you testing the build-id notes are there? > > I don't have one to publish

Re: [musl] Re: [QUESTION] Which fnmatch() functionality does elfutils depend on?

2020-10-28 Thread Mark Wielaard
Hi Rich, On Tue, 2020-10-27 at 18:25 -0400, Rich Felker wrote: > On Tue, Oct 27, 2020 at 11:19:11PM +0100, Mark Wielaard wrote: > > On Tue, Oct 27, 2020 at 01:08:17PM -0400, Rich Felker wrote: > > > They do because they're also in space, unless you want > > > exponential-time which is huge even on

Re: [PATCH] Don't use __BEGIN_DECLS macros from glibc.

2020-10-28 Thread Mark Wielaard
Hi Érico, On Mon, 2020-10-26 at 23:24 +0100, Mark Wielaard wrote: > Please just suggest a patch upstream to libc-al...@sourceware.org. > We'll pick it up when they decide to accept it. Note that it is also a > public glibc header installed as /usr/include/elf.h. I saw your patch was accepted upst

Re: [musl] Re: [QUESTION] Which fnmatch() functionality does elfutils depend on?

2020-10-28 Thread Rich Felker
On Wed, Oct 28, 2020 at 11:05:58AM +0100, Mark Wielaard wrote: > Hi Rich, > > On Tue, 2020-10-27 at 18:25 -0400, Rich Felker wrote: > > On Tue, Oct 27, 2020 at 11:19:11PM +0100, Mark Wielaard wrote: > > > On Tue, Oct 27, 2020 at 01:08:17PM -0400, Rich Felker wrote: > > > > They do because they're

[PATCH v2] Fix leb128 reading

2020-10-28 Thread Tom Tromey
PR 26773 points out that some sleb128 values are decoded incorrectly. This version of the fix only examines the sleb128 conversion. Overlong encodings are not handled, and the uleb128 decoders are not touched. The approach taken here is to do the work in an unsigned type, and then rely on an impl