diff options
author | Florian Weimer <fweimer@redhat.com> | 2022-04-29 17:00:53 +0200 |
---|---|---|
committer | Florian Weimer <fweimer@redhat.com> | 2022-04-29 17:00:53 +0200 |
commit | d056c212130280c0a54d9a4f72170ec621b70ce5 (patch) | |
tree | f7d368b4f45bcb3eba90b5e89e19ba36b1f68fe1 /dlfcn/Makefile | |
parent | 93804a1ee084d4bdc620b2b9f91615c7da0fabe1 (diff) | |
download | glibc-d056c212130280c0a54d9a4f72170ec621b70ce5.zip glibc-d056c212130280c0a54d9a4f72170ec621b70ce5.tar.gz glibc-d056c212130280c0a54d9a4f72170ec621b70ce5.tar.bz2 |
dlfcn: Implement the RTLD_DI_PHDR request type for dlinfo
The information is theoretically available via dl_iterate_phdr as
well, but that approach is very slow if there are many shared
objects.
Reviewed-by: Carlos O'Donell <carlos@redhat.com>
Tested-by: Carlos O'Donell <carlos@rehdat.com>
Diffstat (limited to 'dlfcn/Makefile')
-rw-r--r-- | dlfcn/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/dlfcn/Makefile b/dlfcn/Makefile index 6e0a014..3255ba0 100644 --- a/dlfcn/Makefile +++ b/dlfcn/Makefile @@ -73,6 +73,10 @@ tststatic3-ENV = $(tststatic-ENV) tststatic4-ENV = $(tststatic-ENV) tststatic5-ENV = $(tststatic-ENV) +tests-internal += \ + tst-dlinfo-phdr \ + # tests-internal + ifneq (,$(CXX)) modules-names += bug-atexit3-lib else |