Skip to content

Commit d6887f0

Browse files
committed
Merge bitcoin/bitcoin#33178: guix: increase maximum allowed (runtime) GCC to 7
776a163 guix: increase maximum allowed (runtime) GCC to 7 (fanquake) Pull request description: Fixes: ```bash /distsrc-base/distsrc-d3b8a54a8120-x86_64-linux-gnu/build/bin/bitcoind: symbol __divmodti4 from unsupported version GCC_7.0.0(14) /distsrc-base/distsrc-d3b8a54a8120-x86_64-linux-gnu/build/bin/bitcoind: failed IMPORTED_SYMBOLS ``` which is occuring after #32750. I can't see any supported distro that is shipping a new enough glibc (2.31), but a GCC older than 7.0. Fixes #33177. ACKs for top commit: hebasto: ACK 776a163. Tree-SHA512: 8e5a77c509eb6164314fdb644ea199916e151eb0c7f48703f3a2bdedf0dea29b7f402ceacb2aaf42ebffba59080cefbb84253b2721047d973a851090447ba3b5
2 parents dadf15f + 776a163 commit d6887f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

contrib/guix/symbol-check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
# See https://gcc.gnu.org/onlinedocs/libstdc++/manual/abi.html for more info.
3333

3434
MAX_VERSIONS = {
35-
'GCC': (4,3,0),
35+
'GCC': (7,0,0),
3636
'GLIBC': {
3737
lief.ELF.ARCH.X86_64: (2,31),
3838
lief.ELF.ARCH.ARM: (2,31),

0 commit comments

Comments
 (0)