diff options
author | Andreas Jaeger <aj@suse.de> | 2000-07-10 13:52:21 +0000 |
---|---|---|
committer | Andreas Jaeger <aj@suse.de> | 2000-07-10 13:52:21 +0000 |
commit | 02ba6e61d2359f4a4dc28a43937078b3da721be9 (patch) | |
tree | c645737232e96a7ffff4a8672bb4799b63aa8218 /malloc | |
parent | 989eef3e8ba5284d2206c8a1da50c7d53e8d3976 (diff) | |
download | glibc-02ba6e61d2359f4a4dc28a43937078b3da721be9.tar glibc-02ba6e61d2359f4a4dc28a43937078b3da721be9.tar.gz glibc-02ba6e61d2359f4a4dc28a43937078b3da721be9.tar.bz2 glibc-02ba6e61d2359f4a4dc28a43937078b3da721be9.zip |
Update.
* malloc/Makefile: Run tst-mtrace only with shared libs.
* stdio-common/Makefile: Run unbputc and tst-printf tests only
with shared libs.
2000-07-10 Maciej W. Rozycki <macro@ds2.pg.gda.pl>
* sysdeps/mips/dl-machine.h (elf_machine_runtime_link_map): Verify
that gpreg really points to the GOT section of the calling object.
Scan all PT_LOAD segments of objects for stub_pc, instead of only
checking a start address of first one.
Fix typos.
* sysdeps/mips/mips64/dl-machine.h (elf_machine_runtime_link_map):
Likewise.
* sysdeps/mips/dl-machine.h (__dl_runtime_resolve): Fix a typo.
2000-07-10 Andreas Jaeger <aj@suse.de>
Diffstat (limited to 'malloc')
-rw-r--r-- | malloc/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/malloc/Makefile b/malloc/Makefile index 26b9fedc51..7831240e3c 100644 --- a/malloc/Makefile +++ b/malloc/Makefile @@ -91,11 +91,12 @@ $(objpfx)libmcheck.a: $(objpfx)mcheck-init.o lib: $(objpfx)libmcheck.a - +ifeq (yes,$(build-shared)) .PHONY: do-tst-mtrace tests: do-tst-mtrace do-tst-mtrace: tst-mtrace.sh $(objpfx)tst-mtrace $(SHELL) -e $< $(common-objpfx) +endif # Uncomment this for test releases. For public releases it is too expensive. #CPPFLAGS-malloc.o += -DMALLOC_DEBUG |