mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-23 17:53:37 +08:00
* locale/loadarchive.c (_nl_load_locale_from_archive): Handle
partially overlapping mappings. Remove unneeded (char *) casts. Never allow duplication of ranges in mapped areas. 2002-08-20 Roland McGrath <roland@redhat.com> * elf/Makefile ($(objpfx)ld.so): Separate commands in rule so errors can be detected by make. Reported by H.J. Lu <hjl@gnu.org>. (dl_main): Pass extra argument 0 to TLS_INIT_TP.
This commit is contained in:
parent
b5560a4483
commit
070cadeb5f
13
ChangeLog
13
ChangeLog
@ -1,9 +1,20 @@
|
||||
2002-08-20 Jakub Jelinek <jakub@redhat.com>
|
||||
|
||||
* locale/loadarchive.c (_nl_load_locale_from_archive): Handle
|
||||
partially overlapping mappings. Remove unneeded (char *) casts.
|
||||
Never allow duplication of ranges in mapped areas.
|
||||
|
||||
2002-08-20 Roland McGrath <roland@redhat.com>
|
||||
|
||||
* elf/Makefile ($(objpfx)ld.so): Separate commands in rule so errors
|
||||
can be detected by make. Reported by H.J. Lu <hjl@gnu.org>.
|
||||
|
||||
2002-08-20 Ulrich Drepper <drepper@redhat.com>
|
||||
|
||||
* include/unistd.h: Don't hide _exit.
|
||||
|
||||
* elf/rtld.c (_dl_start): Pass extra argument 1 to TLS_INIT_TP.
|
||||
(dl_main): Padd extra argument 0 to TLS_INIT_TP.
|
||||
(dl_main): Pass extra argument 0 to TLS_INIT_TP.
|
||||
* sysdeps/generic/libc-tls.c (__libc_setup_tls): Pass extra
|
||||
argument 1 to TLS_INIT_TP.
|
||||
* sysdeps/generic/tls.h (TLS_INIT_TP): Describe new parameter.
|
||||
|
@ -168,14 +168,15 @@ $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(common-objpfx)libc_pic.a
|
||||
$(reloc-link) '-Wl,-(' $^ -lgcc '-Wl,-)'
|
||||
|
||||
$(objpfx)ld.so: $(objpfx)librtld.os $(ld-map)
|
||||
@rm -f $@.lds
|
||||
$(LINK.o) -nostdlib -nostartfiles -shared \
|
||||
$(LDFLAGS-rtld) -Wl,--verbose 2>&1 | \
|
||||
sed -e '/^=========/,/^=========/!d;/^=========/d' \
|
||||
-e 's/\. = 0 + SIZEOF_HEADERS;/& _begin = . - SIZEOF_HEADERS;/' \
|
||||
> $@.lds; \
|
||||
> $@.lds
|
||||
$(LINK.o) -nostdlib -nostartfiles -shared -o $@ $(LDFLAGS-rtld) \
|
||||
$(filter-out $(map-file),$^) $(load-map-file) \
|
||||
-Wl,-soname=$(rtld-installed-name) -T $@.lds; \
|
||||
-Wl,-soname=$(rtld-installed-name) -T $@.lds
|
||||
rm -f $@.lds
|
||||
|
||||
# interp.c exists just to get this string into the libraries.
|
||||
|
Loading…
Reference in New Issue
Block a user