diff options
author | H.J. Lu <hjl.tools@gmail.com> | 2015-06-24 03:21:29 -0700 |
---|---|---|
committer | H.J. Lu <hjl.tools@gmail.com> | 2015-06-24 10:27:39 -0700 |
commit | eea3dc5bf2813b77ee9819d1b9ec893140db1491 (patch) | |
tree | 8880a115fc860029f96c48a49e8ccc82b32711ba /NEWS | |
parent | 6f874bd4d4063cacd9edd7f7607fb929f0db218f (diff) | |
download | glibc-eea3dc5bf2813b77ee9819d1b9ec893140db1491.tar glibc-eea3dc5bf2813b77ee9819d1b9ec893140db1491.tar.gz glibc-eea3dc5bf2813b77ee9819d1b9ec893140db1491.tar.bz2 glibc-eea3dc5bf2813b77ee9819d1b9ec893140db1491.zip |
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.
Diffstat (limited to 'NEWS')
-rw-r--r-- | NEWS | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -24,7 +24,7 @@ Version 2.22 18444, 18468, 18469, 18470, 18479, 18483, 18495, 18496, 18497, 18498, 18507, 18512, 18513, 18519, 18520, 18522, 18527, 18528, 18529, 18530, 18532, 18533, 18534, 18536, 18539, 18540, 18542, 18544, 18545, 18546, - 18547, 18553, 18558, 18569, 18583, 18586, 18593. + 18547, 18553, 18558, 18569, 18583, 18585, 18586, 18593. * Cache information can be queried via sysconf() function on s390 e.g. with _SC_LEVEL1_ICACHE_SIZE as argument. |