mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-01-09 11:27:28 -03:00
Merge bitcoin/bitcoin#31307: build: Temporarily disable compiling fuzz/utxo_snapshot.cpp
with MSVC
Some checks are pending
Some checks are pending
b2d5361002
build: Temporarily disable compiling `fuzz/utxo_snapshot.cpp` with MSVC (Hennadii Stepanov) Pull request description: This PR suggests a temporary workaround for a compiler bug [introduced](https://github.com/bitcoin/bitcoin/issues/31303) in Visual Studio 2022 version 17.12. This workaround is required to fix the CI until the upstream compiler bug is resolved. ACKs for top commit: maflcko: lgtm ACKb2d5361002
TheCharlatan: ACKb2d5361002
brunoerg: ACKb2d5361002
Tree-SHA512: 8f8b772253f6f61d9e24c6ae8692511c7c1229c7d20a45fe680ad6a3909c59b58b504589f06d3135d9708a61684be4aba6a426f7f5f60020551f52b9090d3030
This commit is contained in:
commit
746f93b4f0
1 changed files with 4 additions and 1 deletions
|
@ -123,7 +123,10 @@ add_executable(fuzz
|
|||
tx_pool.cpp
|
||||
txorphan.cpp
|
||||
txrequest.cpp
|
||||
utxo_snapshot.cpp
|
||||
# Visual Studio 2022 version 17.12 introduced a bug
|
||||
# that causes an internal compiler error.
|
||||
# See: https://github.com/bitcoin/bitcoin/issues/31303
|
||||
$<$<VERSION_LESS:${MSVC_VERSION},1942>:utxo_snapshot.cpp>
|
||||
utxo_total_supply.cpp
|
||||
validation_load_mempool.cpp
|
||||
vecdeque.cpp
|
||||
|
|
Loading…
Reference in a new issue