Skip to content

Commit 6f8f24b

Browse files
authored
bitcoin-core: temporarily disable IPC build (#13854)
bitcoin/bitcoin#31802 builds libmultiprocess and enables IPC by default, but my understanding is that this breaks oss-fuzz. One proposed solution is #13018. This PR builds depends with `NO_IPC=1`, which disables the feature, for now while we work on an actual fix.
1 parent 4c7f9c7 commit 6f8f24b

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

projects/bitcoin-core/build.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,9 @@ export CPPFLAGS="-D_LIBCPP_HARDENING_MODE=_LIBCPP_HARDENING_MODE_DEBUG -DBOOST_M
4242
(
4343
cd depends
4444
sed -i --regexp-extended '/.*rm -rf .*extract_dir.*/d' ./funcs.mk # Keep extracted source
45+
# Disable IPC pending https://github.com/google/oss-fuzz/pull/13018
4546
make HOST=$BUILD_TRIPLET DEBUG=1 NO_QT=1 NO_ZMQ=1 NO_USDT=1 \
47+
NO_IPC=1 \
4648
AR=llvm-ar NM=llvm-nm RANLIB=llvm-ranlib STRIP=llvm-strip \
4749
-j$(nproc)
4850
)

0 commit comments

Comments
 (0)