diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | elf/Makefile | 7 |
2 files changed, 7 insertions, 3 deletions
@@ -1,5 +1,8 @@ 2003-09-19 Ulrich Drepper <drepper@redhat.com> + * elf/Makefile ($(objpfx)librtld.os): Create link map also for + final build to ease quality control. + * sysdeps/unix/sysv/linux/getcwd.c (__getcwd): If compiled for ld.so, don't include NULL buffer pointer handling. diff --git a/elf/Makefile b/elf/Makefile index c292cfa..d5a1c3d 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -247,10 +247,11 @@ $(objpfx)librtld.mk: $(objpfx)librtld.map Makefile $(objpfx)rtld-libc.a: $(objpfx)librtld.mk FORCE $(MAKE) -f $< -f rtld-Rules -generated += librtld.map librtld.mk rtld-libc.a - $(objpfx)librtld.os: $(objpfx)dl-allobjs.os $(objpfx)rtld-libc.a - $(LINK.o) -nostdlib -nostartfiles -r -o $@ '-Wl,-(' $^ -lgcc '-Wl,-)' + $(LINK.o) -nostdlib -nostartfiles -r -o $@ '-Wl,-(' $^ -lgcc '-Wl,-)' \ + -Wl,-Map,$@.map + +generated += librtld.map librtld.mk rtld-libc.a librtld.os.map $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map) @rm -f $@.lds |