mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
Merge bitcoin/bitcoin#31450: guix: disable gcov in base-linux-gcc
Some checks are pending
CI / test each commit (push) Waiting to run
CI / macOS 14 native, arm64, no depends, sqlite only, gui (push) Waiting to run
CI / macOS 14 native, arm64, fuzz (push) Waiting to run
CI / Win64 native, VS 2022 (push) Waiting to run
CI / Win64 native fuzz, VS 2022 (push) Waiting to run
CI / ASan + LSan + UBSan + integer, no depends, USDT (push) Waiting to run
Some checks are pending
CI / test each commit (push) Waiting to run
CI / macOS 14 native, arm64, no depends, sqlite only, gui (push) Waiting to run
CI / macOS 14 native, arm64, fuzz (push) Waiting to run
CI / Win64 native, VS 2022 (push) Waiting to run
CI / Win64 native fuzz, VS 2022 (push) Waiting to run
CI / ASan + LSan + UBSan + integer, no depends, USDT (push) Waiting to run
f6496a8388
guix: disable gcov in base-linux-gcc (fanquake) Pull request description: In a `x86_64-linux-gnu` build, this drops: ```bash x86_64-linux-gnu/bin/x86_64-linux-gnu-gcov x86_64-linux-gnu/bin/x86_64-linux-gnu-gcov-dump x86_64-linux-gnu/bin/x86_64-linux-gnu-gcov-tool x86_64-linux-gnu/lib/gcc/x86_64-linux-gnu/12.4.0: libgcov.a ``` For mingw-w64-gcc, `--disable-gcov` is currently passed for this target in Guix, due to issues with mingw-w64, see8bed031e58/gnu/packages/gcc.scm (L99-L102)
. However we'll add it in any case, in case it's re-enabled in future, when the underlying issues are fixed. ACKs for top commit: TheCharlatan: ACKf6496a8388
Tree-SHA512: ad6de53f63e7bb658cac05fb023fb1f8e76103073c7dffb4267412d3046148e1389df8848010128c1bd3d428f05e1587b656ef2cad8c7d9078ebec83a68bad49
This commit is contained in:
commit
62bd61de11
1 changed files with 2 additions and 0 deletions
|
@ -420,6 +420,7 @@ inspecting signatures in Mach-O binaries.")
|
||||||
;; https://gcc.gnu.org/install/configure.html
|
;; https://gcc.gnu.org/install/configure.html
|
||||||
(list "--enable-threads=posix",
|
(list "--enable-threads=posix",
|
||||||
"--enable-default-ssp=yes",
|
"--enable-default-ssp=yes",
|
||||||
|
"--disable-gcov",
|
||||||
building-on)))))))
|
building-on)))))))
|
||||||
|
|
||||||
(define-public linux-base-gcc
|
(define-public linux-base-gcc
|
||||||
|
@ -435,6 +436,7 @@ inspecting signatures in Mach-O binaries.")
|
||||||
"--enable-default-pie=yes",
|
"--enable-default-pie=yes",
|
||||||
"--enable-standard-branch-protection=yes",
|
"--enable-standard-branch-protection=yes",
|
||||||
"--enable-cet=yes",
|
"--enable-cet=yes",
|
||||||
|
"--disable-gcov",
|
||||||
building-on)))
|
building-on)))
|
||||||
((#:phases phases)
|
((#:phases phases)
|
||||||
`(modify-phases ,phases
|
`(modify-phases ,phases
|
||||||
|
|
Loading…
Reference in a new issue