diff options
author | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 18:50:15 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 2000-04-18 18:50:15 +0000 |
commit | dc9116316e23799fad63bf3690d842d448afe858 (patch) | |
tree | 5c3f6f95d7513cfafe4596b596434c42a0dd98ab /elf | |
parent | 33c50f1061483e6327321405a448d4574ddedbcd (diff) | |
download | glibc-dc9116316e23799fad63bf3690d842d448afe858.tar.gz glibc-dc9116316e23799fad63bf3690d842d448afe858.tar.xz glibc-dc9116316e23799fad63bf3690d842d448afe858.zip |
Update.
* elf/rtld.c: Display statitics option also if hp timing is not available.
Diffstat (limited to 'elf')
-rw-r--r-- | elf/rtld.c | 12 |
1 files changed, 3 insertions, 9 deletions
diff --git a/elf/rtld.c b/elf/rtld.c index 4d053d298b..7148c6fe6a 100644 --- a/elf/rtld.c +++ b/elf/rtld.c @@ -1182,12 +1182,6 @@ process_dl_debug (const char *dl_debug) if (memcmp (dl_debug, "help", 4) == 0) { /* The `statistics' flag is not always implemented. */ -#ifdef HP_TIMING_NONAVAIL -# define LD_DEBUG_STATISTICS_TEXT -#else -# define LD_DEBUG_STATISTICS_TEXT \ -" statistics display relocation statistics\n" -#endif _dl_sysdep_message ("\ Valid options for the LD_DEBUG environment variable are:\n\ \n\ @@ -1195,9 +1189,9 @@ Valid options for the LD_DEBUG environment variable are:\n\ files display processing of files and libraries\n\ help display this help message and exit\n\ libs display library search paths\n\ - reloc display relocation processing\n" -LD_DEBUG_STATISTICS_TEXT -" symbols display symbol table processing\n\ + reloc display relocation processing\n\ + statistics display relocation statistics\n\ + symbols display symbol table processing\n\ versions display version dependencies\n\ \n\ To direct the debugging output into a file instead of standard output\n\ |