diff options
author | fanquake <fanquake@gmail.com> | 2023-12-18 12:44:42 +0000 |
---|---|---|
committer | fanquake <fanquake@gmail.com> | 2023-12-18 12:48:14 +0000 |
commit | 925a750d99bc7bbe5f4c5978c2e890e381d5dda2 (patch) | |
tree | fd1af21cca093f625026df500e3afbb63b5418b6 /contrib | |
parent | 3695ecbf680a66b718f97d504308578d001eec49 (diff) | |
parent | ff896d25819da1c1e80591595c922fb093942645 (diff) |
Merge bitcoin/bitcoin#28844: contrib: drop GCC MAX_VERSION to 4.3.0 in symbol-check
ff896d25819da1c1e80591595c922fb093942645 contrib: drop GCC MAX_VERSION to 4.3.0 in symbol-check (fanquake)
Pull request description:
Reflect the actual symbols used, i.e:
```bash
bitcoind: symbol __bswapsi2 from unsupported version GCC_4.3.0(7)
```
ACKs for top commit:
TheCharlatan:
ACK ff896d25819da1c1e80591595c922fb093942645
Tree-SHA512: b38ff8f4dd78d2d1c9063c53544dc4f240c3043f142e1581f7ba42f088a509293f6f17cc402c60ac82bff3b36668866b87e0e9e4d10d929484bb4c7a3e654f25
Diffstat (limited to 'contrib')
-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 ff1678116d..b3e73bb2b9 100755 --- a/contrib/devtools/symbol-check.py +++ b/contrib/devtools/symbol-check.py @@ -32,7 +32,7 @@ import lief # See https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html for more info. MAX_VERSIONS = { -'GCC': (4,8,0), +'GCC': (4,3,0), 'GLIBC': { lief.ELF.ARCH.x86_64: (2,27), lief.ELF.ARCH.ARM: (2,27), |