aboutsummaryrefslogtreecommitdiff
path: root/contrib
diff options
context:
space:
mode:
authorfanquake <fanquake@gmail.com>2022-09-13 12:19:13 +0100
committerfanquake <fanquake@gmail.com>2022-09-16 14:56:01 +0100
commitc36afe39ddcc5d94418b9e8309eb279a82b33978 (patch)
tree8175b55619c32a8d63fb951b8ad7ad5a986fcc92 /contrib
parenta688ff9046a9df58a373086445ab5796cccf9dd3 (diff)
downloadbitcoin-c36afe39ddcc5d94418b9e8309eb279a82b33978.tar.xz
contrib: remove 32bit linux code from release scripts
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/devtools/symbol-check.py4
1 files changed, 0 insertions, 4 deletions
diff --git a/contrib/devtools/symbol-check.py b/contrib/devtools/symbol-check.py
index 23d29af3f1..7323ffe367 100755
--- a/contrib/devtools/symbol-check.py
+++ b/contrib/devtools/symbol-check.py
@@ -35,7 +35,6 @@ import lief #type:ignore
MAX_VERSIONS = {
'GCC': (4,8,0),
'GLIBC': {
- lief.ELF.ARCH.i386: (2,18),
lief.ELF.ARCH.x86_64: (2,18),
lief.ELF.ARCH.ARM: (2,18),
lief.ELF.ARCH.AARCH64:(2,18),
@@ -57,9 +56,6 @@ IGNORE_EXPORTS = {
# Expected linker-loader names can be found here:
# https://sourceware.org/glibc/wiki/ABIList?action=recall&rev=16
ELF_INTERPRETER_NAMES: Dict[lief.ELF.ARCH, Dict[lief.ENDIANNESS, str]] = {
- lief.ELF.ARCH.i386: {
- lief.ENDIANNESS.LITTLE: "/lib/ld-linux.so.2",
- },
lief.ELF.ARCH.x86_64: {
lief.ENDIANNESS.LITTLE: "/lib64/ld-linux-x86-64.so.2",
},