diff options
| author | Chun Kuan Lee <[email protected]> | 2018-06-02 17:30:16 +0000 |
|---|---|---|
| committer | Chun Kuan Lee <[email protected]> | 2018-06-02 19:44:33 +0000 |
| commit | 253f5929097548fb10ef995002dedbb8dadb6a0d (patch) | |
| tree | 12c036d6d88400db7d67c1dd0794e6e7048eb322 | |
| parent | Use IN6ADDR_ANY_INIT instead of in6addr_any (diff) | |
| download | discoin-253f5929097548fb10ef995002dedbb8dadb6a0d.tar.xz discoin-253f5929097548fb10ef995002dedbb8dadb6a0d.zip | |
Add stdin, stdout, stderr to ignored export list
| -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 3a67319ea..6808e77da 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') |