about summary refs log tree commit diff
path: root/elf/Makefile
diff options
context:
space:
mode:
authorFlorian Weimer <fweimer@redhat.com>2020-10-07 16:39:50 +0200
committerFlorian Weimer <fweimer@redhat.com>2020-10-07 16:41:30 +0200
commitb31d4355ae817aa3caf9414f842cc07465bca028 (patch)
tree92b53e557c324461904d3bcb0f1131cc15ae7aa9 /elf/Makefile
parent56f8d442942ee51824b4683be83f776a811a3f2a (diff)
downloadglibc-b31d4355ae817aa3caf9414f842cc07465bca028.tar.gz
glibc-b31d4355ae817aa3caf9414f842cc07465bca028.tar.xz
glibc-b31d4355ae817aa3caf9414f842cc07465bca028.zip
elf: Implement _dl_write
The generic version is parallel to _dl_writev.  It cannot use
_dl_writev directly because the errno value needs to be obtained
under a lock.

Reviewed-by: Adhemerval Zanella  <adhemerval.zanella@linaro.org>
Diffstat (limited to 'elf/Makefile')
-rw-r--r--elf/Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile
index e0a8bf2998..ab792d45c2 100644
--- a/elf/Makefile
+++ b/elf/Makefile
@@ -34,7 +34,7 @@ dl-routines	= $(addprefix dl-,load lookup object reloc deps \
 				  version profile tls origin scope \
 				  execstack open close trampoline \
 				  exception sort-maps lookup-direct \
-				  call-libc-early-init)
+				  call-libc-early-init write)
 ifeq (yes,$(use-ldconfig))
 dl-routines += dl-cache
 endif