aboutsummaryrefslogtreecommitdiff
path: root/contrib/devtools/symbol-check.py
diff options
context:
space:
mode:
authorW. J. van der Laan <laanwj@protonmail.com>2021-06-14 20:28:26 +0200
committerW. J. van der Laan <laanwj@protonmail.com>2021-06-14 20:32:09 +0200
commita33381acf5ae2b43616fffaf26b1c8962e8ef0bb (patch)
tree11819331e0492bd3c4d54101c7917c15035152e5 /contrib/devtools/symbol-check.py
parent19e598bab0a1cb5ad93321eb9fa25d1a58d5e276 (diff)
downloadbitcoin-a33381acf5ae2b43616fffaf26b1c8962e8ef0bb.tar.xz
devtools: Add xkb version to symbol-check
xkb versions symbols (using the prefix `V`), as this library is used by bitcoin-qt, add it to the valid versions in `symbol-check.py`.
Diffstat (limited to 'contrib/devtools/symbol-check.py')
-rwxr-xr-xcontrib/devtools/symbol-check.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py
index d740a94560..980b5e52dc 100755
--- a/contrib/devtools/symbol-check.py
+++ b/contrib/devtools/symbol-check.py
@@ -42,7 +42,8 @@ import pixie
MAX_VERSIONS = {
'GCC': (4,8,0),
'GLIBC': (2,17),
-'LIBATOMIC': (1,0)
+'LIBATOMIC': (1,0),
+'V': (0,5,0), # xkb (bitcoin-qt only)
}
# See here for a description of _IO_stdin_used:
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109