Skip to content

Commit 3c8088f

Browse files
committed
merge bitcoin#26075: remove 32bit linux code from release scripts
1 parent ecb9ff8 commit 3c8088f

File tree

1 file changed

+0
-6
lines changed

1 file changed

+0
-6
lines changed

contrib/devtools/symbol-check.py

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,6 @@
4141
MAX_VERSIONS = {
4242
'GCC': (4,8,0),
4343
'GLIBC': {
44-
lief.ELF.ARCH.i386: (2,28),
4544
lief.ELF.ARCH.x86_64: (2,18),
4645
lief.ELF.ARCH.ARM: (2,28),
4746
lief.ELF.ARCH.AARCH64:(2,18),
@@ -51,8 +50,6 @@
5150
'LIBATOMIC': (1,0),
5251
'V': (0,5,0), # xkb (bitcoin-qt only)
5352
}
54-
# See here for a description of _IO_stdin_used:
55-
# https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=634261#109
5653

5754
# Ignore symbols that are exported as part of every executable
5855
IGNORE_EXPORTS = {
@@ -66,9 +63,6 @@
6663
# Expected linker-loader names can be found here:
6764
# https://sourceware.org/glibc/wiki/ABIList?action=recall&rev=16
6865
ELF_INTERPRETER_NAMES: Dict[lief.ELF.ARCH, Dict[lief.ENDIANNESS, str]] = {
69-
lief.ELF.ARCH.i386: {
70-
lief.ENDIANNESS.LITTLE: "/lib/ld-linux.so.2",
71-
},
7266
lief.ELF.ARCH.x86_64: {
7367
lief.ENDIANNESS.LITTLE: "/lib64/ld-linux-x86-64.so.2",
7468
},

0 commit comments

Comments
 (0)