diff options
| author | Cory Fields <[email protected]> | 2016-01-26 23:03:15 -0500 |
|---|---|---|
| committer | Cory Fields <[email protected]> | 2016-01-26 23:07:04 -0500 |
| commit | 475813ba5b208eb9a5d027eb628a717cc123ef4f (patch) | |
| tree | 191e071c2fe281880ec57ff0672b5380af6d5cc1 | |
| parent | release: fix parsing of BIND_NOW with older readelf (diff) | |
| download | discoin-475813ba5b208eb9a5d027eb628a717cc123ef4f.tar.xz discoin-475813ba5b208eb9a5d027eb628a717cc123ef4f.zip | |
release: add _IO_stdin_used to ignored exports
For details see: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109
| -rwxr-xr-x | contrib/devtools/symbol-check.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index 93acfcdda..4ad5136f7 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -42,9 +42,12 @@ MAX_VERSIONS = { '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') |