unofficial mirror of libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH v2 0/3] glibc-hwcaps support for LD_LIBRARY_PATH
@ 2020-10-12 15:21 Florian Weimer via Libc-alpha
  2020-10-12 15:21 ` [PATCH 1/3] elf: Add " Florian Weimer via Libc-alpha
                   ` (2 more replies)
  0 siblings, 3 replies; 32+ messages in thread
From: Florian Weimer via Libc-alpha @ 2020-10-12 15:21 UTC (permalink / raw)
  To: libc-alpha; +Cc: Paul A. Clarke

This sub-series implements glibc-hwcaps for LD_LIBRARY_PATH, with
auto-detected paths for x86-64 and POWER ("power10" being untested).

Paul, I hope I have addressed your comments regarding magic bits with
the new helper function, _dl_hwcaps_subdirs_build_bitmask.

Thanks,
Florian

Florian Weimer (3):
  elf: Add glibc-hwcaps support for LD_LIBRARY_PATH
  x86_64: Add glibc-hwcaps support
  powerpc64le: Add glibc-hwcaps support

 elf/Makefile                                  |  66 ++++++++-
 elf/dl-hwcaps-subdirs.c                       |  29 ++++
 elf/dl-hwcaps.c                               | 138 ++++++++++++++---
 elf/dl-hwcaps.h                               | 103 +++++++++++++
 elf/dl-hwcaps_split.c                         |  77 ++++++++++
 elf/dl-load.c                                 |   7 +-
 elf/dl-main.h                                 |  11 +-
 elf/dl-support.c                              |   5 +-
 elf/dl-usage.c                                |  68 ++++++++-
 elf/markermodMARKER-VALUE.c                   |  29 ++++
 elf/rtld.c                                    |  18 +++
 elf/tst-dl-hwcaps_split.c                     | 139 ++++++++++++++++++
 elf/tst-glibc-hwcaps-mask.c                   |  31 ++++
 elf/tst-glibc-hwcaps-prepend.c                |  32 ++++
 elf/tst-glibc-hwcaps.c                        |  28 ++++
 sysdeps/generic/ldsodefs.h                    |  20 ++-
 sysdeps/powerpc/powerpc64/le/Makefile         |  22 +++
 .../powerpc/powerpc64/le/dl-hwcaps-subdirs.c  |  39 +++++
 .../powerpc/powerpc64/le/tst-glibc-hwcaps.c   |  54 +++++++
 sysdeps/x86_64/Makefile                       |  36 ++++-
 sysdeps/x86_64/dl-hwcaps-subdirs.c            |  66 +++++++++
 sysdeps/x86_64/tst-glibc-hwcaps.c             |  65 ++++++++
 22 files changed, 1049 insertions(+), 34 deletions(-)
 create mode 100644 elf/dl-hwcaps-subdirs.c
 create mode 100644 elf/dl-hwcaps_split.c
 create mode 100644 elf/markermodMARKER-VALUE.c
 create mode 100644 elf/tst-dl-hwcaps_split.c
 create mode 100644 elf/tst-glibc-hwcaps-mask.c
 create mode 100644 elf/tst-glibc-hwcaps-prepend.c
 create mode 100644 elf/tst-glibc-hwcaps.c
 create mode 100644 sysdeps/powerpc/powerpc64/le/dl-hwcaps-subdirs.c
 create mode 100644 sysdeps/powerpc/powerpc64/le/tst-glibc-hwcaps.c
 create mode 100644 sysdeps/x86_64/dl-hwcaps-subdirs.c
 create mode 100644 sysdeps/x86_64/tst-glibc-hwcaps.c

-- 
Red Hat GmbH, https://de.redhat.com/ , Registered seat: Grasbrunn,
Commercial register: Amtsgericht Muenchen, HRB 153243,
Managing Directors: Charles Cachera, Brian Klemm, Laurie Krebs, Michael O'Neill


^ permalink raw reply	[flat|nested] 32+ messages in thread

end of thread, other threads:[~2020-11-23 10:20 UTC | newest]

Thread overview: 32+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-10-12 15:21 [PATCH v2 0/3] glibc-hwcaps support for LD_LIBRARY_PATH Florian Weimer via Libc-alpha
2020-10-12 15:21 ` [PATCH 1/3] elf: Add " Florian Weimer via Libc-alpha
2020-10-13 16:28   ` Paul A. Clarke via Libc-alpha
2020-10-14 13:58     ` Florian Weimer via Libc-alpha
2020-10-14 15:14       ` Paul A. Clarke via Libc-alpha
2020-10-14 15:19         ` Florian Weimer via Libc-alpha
2020-10-20 17:23   ` Paul A. Clarke via Libc-alpha
2020-10-12 15:21 ` [PATCH v2 2/3] x86_64: Add glibc-hwcaps support Florian Weimer via Libc-alpha
2020-10-12 18:11   ` H.J. Lu via Libc-alpha
2020-10-13  9:29     ` Florian Weimer via Libc-alpha
2020-10-13 11:02       ` H.J. Lu via Libc-alpha
2020-10-13 11:24         ` Florian Weimer via Libc-alpha
2020-10-13 11:43           ` H.J. Lu via Libc-alpha
2020-10-12 15:22 ` [PATCH v2 3/3] powerpc64le: " Florian Weimer via Libc-alpha
2020-10-13 16:36   ` Paul A. Clarke via Libc-alpha
2020-10-20 17:23   ` Paul A. Clarke via Libc-alpha
2020-10-29 16:26   ` Florian Weimer via Libc-alpha
2020-10-30 23:10   ` Tulio Magno Quites Machado Filho via Libc-alpha
2020-11-02 10:15     ` Florian Weimer via Libc-alpha
2020-11-03 15:14       ` Tulio Magno Quites Machado Filho via Libc-alpha
2020-11-03 16:29         ` Florian Weimer via Libc-alpha
2020-11-03 23:02           ` Segher Boessenkool
2020-11-04  8:28             ` Florian Weimer via Libc-alpha
2020-11-04 19:36               ` Segher Boessenkool
2020-11-04 19:56                 ` Florian Weimer via Libc-alpha
2020-11-04 21:58                   ` Segher Boessenkool
2020-11-05 11:40                     ` Florian Weimer via Libc-alpha
2020-11-05 21:42                       ` Segher Boessenkool
2020-11-09 18:32                         ` Florian Weimer via Libc-alpha
2020-11-16 14:51               ` Tulio Magno Quites Machado Filho via Libc-alpha
2020-11-16 19:35                 ` Segher Boessenkool
2020-11-23 10:20                   ` Florian Weimer via Libc-alpha

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).