aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorChun Kuan Lee <ken2812221@gmail.com>2018-06-02 17:30:16 +0000
committerChun Kuan Lee <ken2812221@gmail.com>2018-06-02 19:44:33 +0000
commit253f5929097548fb10ef995002dedbb8dadb6a0d (patch)
tree12c036d6d88400db7d67c1dd0794e6e7048eb322 /contrib
parentfc6a9f2ab18ca8466d65d14c263c4f78f9ccebbf (diff)
downloadbitcoin-253f5929097548fb10ef995002dedbb8dadb6a0d.tar.xz
Add stdin, stdout, stderr to ignored export list
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/devtools/symbol-check.py2
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')