diff options
author | Jakub Jelinek <jakub@redhat.com> | 2007-08-16 21:20:11 +0000 |
---|---|---|
committer | Jakub Jelinek <jakub@redhat.com> | 2007-08-16 21:20:11 +0000 |
commit | cb84d1e403cf2295307b398ab54cedc6bf9f8973 (patch) | |
tree | f166c176f30129a74cd88ea17249ca1ca222f689 /elf/Makefile | |
parent | 3e8d1eabc985a5804681506d79187829774885ad (diff) | |
download | glibc-cb84d1e403cf2295307b398ab54cedc6bf9f8973.zip glibc-cb84d1e403cf2295307b398ab54cedc6bf9f8973.tar.gz glibc-cb84d1e403cf2295307b398ab54cedc6bf9f8973.tar.bz2 |
* elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u cvs/fedora-glibc-20070816T2121
to check for undefined symbols.
* elf/Makefile ($(objpfx)ld.so): Use readelf -s and awk instead of nm -u
to check for undefined symbols.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/elf/Makefile b/elf/Makefile index d1b3c5a..2943acc 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -307,7 +307,8 @@ $(objpfx)ld.so: $(objpfx)librtld.os $(ld-map) $(filter-out $(map-file),$^) $(load-map-file) \ -Wl,-soname=$(rtld-installed-name) -T $@.lds rm -f $@.lds - nm -u $@ | cmp -s /dev/null - + readelf -s $@ \ + | awk '($$7 ~ /^UND(|EF)$$/ && $$1 != "0:" && $$4 != "REGISTER") { print; p=1 } END { exit p != 0 }' # interp.c exists just to get this string into the libraries. CFLAGS-interp.c = -D'RUNTIME_LINKER="$(slibdir)/$(rtld-installed-name)"' \ |