diff options
author | Chun Kuan Lee <ken2812221@gmail.com> | 2018-06-02 17:30:16 +0000 |
---|---|---|
committer | Chun Kuan Lee <ken2812221@gmail.com> | 2018-06-02 19:44:33 +0000 |
commit | 253f5929097548fb10ef995002dedbb8dadb6a0d (patch) | |
tree | 12c036d6d88400db7d67c1dd0794e6e7048eb322 /contrib/devtools | |
parent | fc6a9f2ab18ca8466d65d14c263c4f78f9ccebbf (diff) |
Add stdin, stdout, stderr to ignored export list
Diffstat (limited to 'contrib/devtools')
-rwxr-xr-x | contrib/devtools/symbol-check.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py index 3a67319eaa..6808e77da7 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -46,7 +46,7 @@ MAX_VERSIONS = { # Ignore symbols that are exported as part of every executable IGNORE_EXPORTS = { -'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used' +'_edata', '_end', '_init', '__bss_start', '_fini', '_IO_stdin_used', 'stdin', 'stdout', 'stderr' } READELF_CMD = os.getenv('READELF', '/usr/bin/readelf') CPPFILT_CMD = os.getenv('CPPFILT', '/usr/bin/c++filt') |