This is the mail archive of the glibc-bugs@sourceware.org mailing list for the glibc project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

[Bug libc/18585] ldconfig doesn't ignore GDB .py files


https://sourceware.org/bugzilla/show_bug.cgi?id=18585

--- Comment #1 from cvs-commit at gcc dot gnu.org <cvs-commit at gcc dot gnu.org> ---
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU C Library master sources".

The branch, master has been updated
       via  eea3dc5bf2813b77ee9819d1b9ec893140db1491 (commit)
      from  6f874bd4d4063cacd9edd7f7607fb929f0db218f (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
https://sourceware.org/git/gitweb.cgi?p=glibc.git;h=eea3dc5bf2813b77ee9819d1b9ec893140db1491

commit eea3dc5bf2813b77ee9819d1b9ec893140db1491
Author: H.J. Lu <hjl.tools@gmail.com>
Date:   Wed Jun 24 03:21:29 2015 -0700

    Don't issue errors on GDB Python files

    Many packages, including GCC, install Python files for GDB in library
    diretory. ldconfig reads them and issue errors since they aren't ELF
    files:

    ldconfig: /usr/gcc-5.1.1/lib/libstdc++.so.6.0.21-gdb.py is not an ELF file
- it has the wrong magic bytes at the start.

    ldconfig: /usr/gcc-5.1.1/libx32/libstdc++.so.6.0.21-gdb.py is not an ELF
file - it has the wrong magic bytes at the start.

    ldconfig: /usr/gcc-5.1.1/lib64/libstdc++.so.6.0.21-gdb.py is not an ELF
file - it has the wrong magic bytes at the start.

    This patch silences ldconfig on GDB Python files by checking filenames
    with -gdb.py suffix.

        [BZ #18585]
        * elf/readlib.c (is_gdb_python_file): New.
        (process_file): Don't issue errors on filenames with -gdb.py
        suffix.

-----------------------------------------------------------------------

Summary of changes:
 ChangeLog     |    7 +++++++
 NEWS          |    2 +-
 elf/readlib.c |   10 +++++++++-
 3 files changed, 17 insertions(+), 2 deletions(-)

-- 
You are receiving this mail because:
You are on the CC list for the bug.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]