On Fri, Feb 17, 2017 at 08:30:17AM -0800, Matt Turner wrote:
> On Fri, Feb 17, 2017 at 5:39 AM, Emil Velikov
> wrote:
> > On 17 February 2017 at 01:10, Jonathan Gray wrote:
> >> On Thu, Feb 16, 2017 at 04:25:02PM +, Emil Velikov wrote:
> >>> On 16 February 2017 at 14:23, Jonathan Gray wrote
On Fri, Feb 17, 2017 at 5:39 AM, Emil Velikov wrote:
> On 17 February 2017 at 01:10, Jonathan Gray wrote:
>> On Thu, Feb 16, 2017 at 04:25:02PM +, Emil Velikov wrote:
>>> On 16 February 2017 at 14:23, Jonathan Gray wrote:
>>> > On Wed, Feb 15, 2017 at 11:11:50AM -0800, Matt Turner wrote:
>>>
On 17 February 2017 at 01:10, Jonathan Gray wrote:
> On Thu, Feb 16, 2017 at 04:25:02PM +, Emil Velikov wrote:
>> On 16 February 2017 at 14:23, Jonathan Gray wrote:
>> > On Wed, Feb 15, 2017 at 11:11:50AM -0800, Matt Turner wrote:
>> >> Provides the ability to read the .note.gnu.build-id sect
On Thu, Feb 16, 2017 at 04:25:02PM +, Emil Velikov wrote:
> On 16 February 2017 at 14:23, Jonathan Gray wrote:
> > On Wed, Feb 15, 2017 at 11:11:50AM -0800, Matt Turner wrote:
> >> Provides the ability to read the .note.gnu.build-id section of ELF
> >> binaries, which is inserted by the --buil
On 16 February 2017 at 14:23, Jonathan Gray wrote:
> On Wed, Feb 15, 2017 at 11:11:50AM -0800, Matt Turner wrote:
>> Provides the ability to read the .note.gnu.build-id section of ELF
>> binaries, which is inserted by the --build-id=... flag to ld.
>>
>> Reviewed-by: Emil Velikov
>
> I don't have
On Wed, Feb 15, 2017 at 11:11:50AM -0800, Matt Turner wrote:
> Provides the ability to read the .note.gnu.build-id section of ELF
> binaries, which is inserted by the --build-id=... flag to ld.
>
> Reviewed-by: Emil Velikov
I don't have time to dig into details right now but this broke the Mesa
Provides the ability to read the .note.gnu.build-id section of ELF
binaries, which is inserted by the --build-id=... flag to ld.
Reviewed-by: Emil Velikov
---
configure.ac | 6 +++
src/util/Makefile.sources | 2 +
src/util/build_id.c | 109 +
On Wed, Feb 15, 2017 at 10:57 AM, Matt Turner wrote:
> On Wed, Feb 15, 2017 at 4:03 AM, Emil Velikov
> wrote:
> > Hi Matt,
> >
> > Afaics dl_iterate_phdr is available on musl, (some?) BSDs and Solaris
> > - thank you for opting for it.
> >
> > Out of curiosity:
> > Have you checked if on those p
On Wed, Feb 15, 2017 at 4:03 AM, Emil Velikov wrote:
> Hi Matt,
>
> Afaics dl_iterate_phdr is available on musl, (some?) BSDs and Solaris
> - thank you for opting for it.
>
> Out of curiosity:
> Have you checked if on those platforms the "GNU\0" strcmp is
> applicable and not another string ? Wort
Hi Matt,
Afaics dl_iterate_phdr is available on musl, (some?) BSDs and Solaris
- thank you for opting for it.
Out of curiosity:
Have you checked if on those platforms the "GNU\0" strcmp is
applicable and not another string ? Worth adding a note/comment ?
On 14 February 2017 at 23:58, Matt Turne
Provides the ability to read the .note.gnu.build-id section of ELF
binaries, which is inserted by the --build-id=... flag to ld.
---
configure.ac | 2 +
src/util/Makefile.sources | 2 +
src/util/build_id.c | 110 ++
src/util/build_
On Tue, Feb 14, 2017 at 12:43 PM, Nicholas Miell wrote:
> On 02/14/2017 12:30 PM, Chad Versace wrote:
>>
>> On Tue 14 Feb 2017, Matt Turner wrote:
>>>
>>> Provides the ability to read the .note.gnu.build-id section of ELF
>>> binaries, which is inserted by the --build-id=... flag to ld.
>>> ---
>>
On Tue, Feb 14, 2017 at 11:34 AM, Chad Versace
wrote:
> On Tue 14 Feb 2017, Matt Turner wrote:
> > On Tue, Feb 14, 2017 at 11:21 AM, Matt Turner
> wrote:
> > > On Tue, Feb 14, 2017 at 11:18 AM, Matt Turner
> wrote:
> > >> On Tue, Feb 14, 2017 at 10:59 AM, Jason Ekstrand <
> ja...@jlekstrand.net
On 02/14/2017 12:30 PM, Chad Versace wrote:
On Tue 14 Feb 2017, Matt Turner wrote:
Provides the ability to read the .note.gnu.build-id section of ELF
binaries, which is inserted by the --build-id=... flag to ld.
---
configure.ac | 2 +
src/util/Makefile.sources | 2 +
src/util/
On Tue 14 Feb 2017, Matt Turner wrote:
> Provides the ability to read the .note.gnu.build-id section of ELF
> binaries, which is inserted by the --build-id=... flag to ld.
> ---
> configure.ac | 2 +
> src/util/Makefile.sources | 2 +
> src/util/build_id.c | 109
> +
On Tue, Feb 14, 2017 at 11:39 AM, Kristian H. Kristensen
wrote:
> Matt Turner writes:
>> diff --git a/src/util/build_id.c b/src/util/build_id.c
>> new file mode 100644
>> index 000..a2e21b7
>> --- /dev/null
>> +++ b/src/util/build_id.c
>> @@ -0,0 +1,109 @@
>> +/*
>> + * Copyright © 2016 Intel
Matt Turner writes:
> Provides the ability to read the .note.gnu.build-id section of ELF
> binaries, which is inserted by the --build-id=... flag to ld.
> ---
> configure.ac | 2 +
> src/util/Makefile.sources | 2 +
> src/util/build_id.c | 109
> ++
On Tue 14 Feb 2017, Matt Turner wrote:
> Provides the ability to read the .note.gnu.build-id section of ELF
> binaries, which is inserted by the --build-id=... flag to ld.
Heh. Sunday night I wrote a prototype of this myself. I'm strongly in
favor of basing Vulkan unique id's on the ELF build-id i
On Tue 14 Feb 2017, Matt Turner wrote:
> On Tue, Feb 14, 2017 at 11:21 AM, Matt Turner wrote:
> > On Tue, Feb 14, 2017 at 11:18 AM, Matt Turner wrote:
> >> On Tue, Feb 14, 2017 at 10:59 AM, Jason Ekstrand
> >> wrote:
> >>> I'm not sure how I feel about the silent fall-backs. At least in the
>
On Tue, Feb 14, 2017 at 11:21 AM, Matt Turner wrote:
> On Tue, Feb 14, 2017 at 11:18 AM, Matt Turner wrote:
>> On Tue, Feb 14, 2017 at 10:59 AM, Jason Ekstrand
>> wrote:
>>> I'm not sure how I feel about the silent fall-backs. At least in the Vulkan
>>> driver, we should fail to compile if we
On Tue, Feb 14, 2017 at 11:18 AM, Matt Turner wrote:
> On Tue, Feb 14, 2017 at 10:59 AM, Jason Ekstrand wrote:
>> I'm not sure how I feel about the silent fall-backs. At least in the Vulkan
>> driver, we should fail to compile if we can't get build-id. Otherwise,
>> you'll end up compiling a dr
On Tue, Feb 14, 2017 at 10:59 AM, Jason Ekstrand wrote:
> I'm not sure how I feel about the silent fall-backs. At least in the Vulkan
> driver, we should fail to compile if we can't get build-id. Otherwise,
> you'll end up compiling a driver that will always fail device creation.
That was reall
On Tue, Feb 14, 2017 at 10:51 AM, Matt Turner wrote:
> Provides the ability to read the .note.gnu.build-id section of ELF
> binaries, which is inserted by the --build-id=... flag to ld.
> ---
> configure.ac | 2 +
> src/util/Makefile.sources | 2 +
> src/util/build_id.c |
Provides the ability to read the .note.gnu.build-id section of ELF
binaries, which is inserted by the --build-id=... flag to ld.
---
configure.ac | 2 +
src/util/Makefile.sources | 2 +
src/util/build_id.c | 109 ++
src/util/build_
24 matches
Mail list logo