diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index 34ff16009..cee7ff269 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -48,7 +48,8 @@ MAX_VERSIONS = { # Ignore symbols that are exported as part of every executable IGNORE_EXPORTS = { -b'_edata', b'_end', b'_init', b'__bss_start', b'_fini', b'_IO_stdin_used' + b'_edata', b'_end', b'_init', b'__bss_start', b'_fini', b'_IO_stdin_used', + b'stdin', b'stdout', b'stderr' } READELF_CMD = os.getenv('READELF', '/usr/bin/readelf') CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt')