Skip to content

Commit 475813b

Browse files
committed
1 parent cd27bf5 commit 475813b

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

contrib/devtools/symbol-check.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,9 +42,12 @@
4242
'GLIBCXX': (3,4,13),
4343
'GLIBC': (2,11)
4444
}
45+
# See here for a description of _IO_stdin_used:
46+
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109
47+
4548
# Ignore symbols that are exported as part of every executable
4649
IGNORE_EXPORTS = {
47-
'_edata', '_end', '_init', '__bss_start', '_fini'
50+
'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used'
4851
}
4952
READELF_CMD = os.getenv('READELF', '/usr/bin/readelf')
5053
CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt')

0 commit comments

Comments
 (0)