Skip to content

Commit

Permalink
release: add _IO_stdin_used to ignored exports
Browse files Browse the repository at this point in the history
  • Loading branch information
theuni committed Jan 27, 2016
1 parent cd27bf5 commit 475813b
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion contrib/devtools/symbol-check.py
Expand Up @@ -42,9 +42,12 @@
'GLIBCXX': (3,4,13),
'GLIBC': (2,11)
}
# See here for a description of _IO_stdin_used:
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109

# Ignore symbols that are exported as part of every executable
IGNORE_EXPORTS = {
'_edata', '_end', '_init', '__bss_start', '_fini'
'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used'
}
READELF_CMD = os.getenv('READELF', '/usr/bin/readelf')
CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt')
Expand Down

0 comments on commit 475813b

Please sign in to comment.