public inbox for libc-alpha@sourceware.org
 help / color / mirror / Atom feed
* [PATCH 0/5] More features cleanups
@ 2022-08-02 14:59 Adhemerval Zanella
  2022-08-02 14:59 ` [PATCH 1/5] Remove missing LD_LIBRARY_VERSION usages Adhemerval Zanella
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Adhemerval Zanella @ 2022-08-02 14:59 UTC (permalink / raw)
  To: libc-alpha

This patchset continue the old features cleanup started on previous
releases, like libc4/libc5 and prelink support.

Adhemerval Zanella (4):
  Remove missing LD_LIBRARY_VERSION usages
  Remove ldd libc4 support
  arm: Remove RELA support
  i386: Remove RELA support

Lucas A. M. Magalhaes (1):
  Assume only FLAG_ELF_LIBC6 suport

 Makeconfig                                    |   4 +-
 elf/cache.c                                   |   6 +-
 elf/ldconfig.c                                |  63 +-----
 elf/readelflib.c                              |  46 +----
 elf/readlib.c                                 |  25 +--
 sysdeps/arm/dl-machine-rel.h                  |   7 +-
 sysdeps/arm/dl-machine.h                      | 100 ---------
 sysdeps/i386/dl-machine-rel.h                 |   7 +-
 sysdeps/i386/dl-machine.h                     | 191 ------------------
 sysdeps/unix/sysv/linux/Makefile              |   2 -
 sysdeps/unix/sysv/linux/aarch64/ldconfig.h    |  30 ---
 sysdeps/unix/sysv/linux/arc/ldconfig.h        |  27 ---
 sysdeps/unix/sysv/linux/arm/ldconfig.h        |  25 ---
 sysdeps/unix/sysv/linux/csky/configure        |   1 -
 sysdeps/unix/sysv/linux/csky/configure.ac     |   1 -
 sysdeps/unix/sysv/linux/csky/ldconfig.h       |  34 ----
 sysdeps/unix/sysv/linux/i386/Makefile         |   5 -
 sysdeps/unix/sysv/linux/i386/configure        |   1 -
 sysdeps/unix/sysv/linux/i386/configure.ac     |   1 -
 sysdeps/unix/sysv/linux/i386/ldconfig.h       |   6 -
 sysdeps/unix/sysv/linux/ia64/ldconfig.h       |  24 ---
 sysdeps/unix/sysv/linux/ldd-rewrite.sed       |  11 -
 sysdeps/unix/sysv/linux/lddlibc4.c            | 104 ----------
 sysdeps/unix/sysv/linux/m68k/Makefile         |   4 -
 sysdeps/unix/sysv/linux/m68k/configure        |   1 -
 sysdeps/unix/sysv/linux/m68k/configure.ac     |   1 -
 sysdeps/unix/sysv/linux/m68k/ldconfig.h       |   1 -
 .../unix/sysv/linux/mips/mips64/ldconfig.h    |  25 ---
 sysdeps/unix/sysv/linux/powerpc/ldconfig.h    |  27 ---
 .../unix/sysv/linux/powerpc/ldd-rewrite.sed   |   3 -
 sysdeps/unix/sysv/linux/riscv/ldconfig.h      |  36 ----
 sysdeps/unix/sysv/linux/s390/ldconfig.h       |   7 -
 sysdeps/unix/sysv/linux/s390/ldd-rewrite.sed  |   3 -
 sysdeps/unix/sysv/linux/sparc/ldd-rewrite.sed |   2 -
 .../unix/sysv/linux/sparc/sparc32/Makefile    |   2 -
 sysdeps/unix/sysv/linux/x86_64/ldconfig.h     |  26 ---
 .../unix/sysv/linux/x86_64/ldd-rewrite.sed    |   2 -
 37 files changed, 18 insertions(+), 843 deletions(-)
 delete mode 100644 sysdeps/unix/sysv/linux/aarch64/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/arc/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/arm/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/csky/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/ia64/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/ldd-rewrite.sed
 delete mode 100644 sysdeps/unix/sysv/linux/lddlibc4.c
 delete mode 100644 sysdeps/unix/sysv/linux/m68k/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/mips/mips64/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/powerpc/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/riscv/ldconfig.h
 delete mode 100644 sysdeps/unix/sysv/linux/x86_64/ldconfig.h

-- 
2.34.1


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

end of thread, other threads:[~2023-12-07 14:40 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-08-02 14:59 [PATCH 0/5] More features cleanups Adhemerval Zanella
2022-08-02 14:59 ` [PATCH 1/5] Remove missing LD_LIBRARY_VERSION usages Adhemerval Zanella
2022-08-02 15:11   ` Andreas Schwab
2022-08-02 14:59 ` [PATCH 2/5] Assume only FLAG_ELF_LIBC6 suport Adhemerval Zanella
2023-12-07 13:14   ` Alexander Monakov
2023-12-07 14:40     ` Adhemerval Zanella Netto
2022-08-02 14:59 ` [PATCH 3/5] Remove ldd libc4 support Adhemerval Zanella
2022-08-02 23:35   ` H.J. Lu
2022-08-02 14:59 ` [PATCH 4/5] arm: Remove RELA support Adhemerval Zanella
2022-08-03 18:31   ` Adhemerval Zanella Netto
2022-08-03 19:59     ` Phil Blundell
2022-08-02 14:59 ` [PATCH 5/5] i386: " Adhemerval Zanella
2022-08-02 15:13   ` H.J. Lu
2022-08-04  0:45     ` Fangrui Song

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).