diff options
-rw-r--r-- | NEWS | 3 | ||||
-rw-r--r-- | elf/Makefile | 7 |
2 files changed, 9 insertions, 1 deletions
@@ -79,6 +79,9 @@ Major new features: variables. The GNU C Library manual has details on integration of Restartable Sequences. +* A symbolic link to the dynamic linker is now installed under + /usr/bin/ld.so (or more precisely, '${bindir}/ld.so'). + Deprecated and removed features, and other changes affecting compatibility: * The r_version update in the debugger interface makes the glibc binary diff --git a/elf/Makefile b/elf/Makefile index ef36008..d0bb0da 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -110,7 +110,7 @@ endif ifeq (yes,$(build-shared)) extra-objs = $(all-rtld-routines:%=%.os) sofini.os interp.os generated += librtld.os dl-allobjs.os ld.so ldd -install-others = $(inst_rtlddir)/$(rtld-installed-name) +install-others = $(inst_rtlddir)/$(rtld-installed-name) $(inst_bindir)/ld.so install-bin-script = ldd endif @@ -692,6 +692,11 @@ $(inst_rtlddir)/$(rtld-installed-name): $(objpfx)ld.so $(+force) $(make-target-directory) $(do-install-program) +# Creates the relative /usr/bin/ld.so symbolic link. +$(inst_bindir)/ld.so: $(inst_rtlddir)/$(rtld-installed-name) + $(make-target-directory) + $(make-link) + # Special target called by parent to install just the dynamic linker. .PHONY: ldso_install ldso_install: $(inst_rtlddir)/$(rtld-installed-name) |