Skip to content

Commit 681dfc2

Browse files
committed
bitcoin-core: re-enable IPC
Now that we have a base image that has GCC 13.
1 parent 16d853d commit 681dfc2

File tree

2 files changed

+2
-4
lines changed

2 files changed

+2
-4
lines changed

projects/bitcoin-core/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,8 @@ FROM gcr.io/oss-fuzz-base/base-builder:ubuntu-24-04
2020
# * https://github.com/bitcoin/bitcoin/blob/master/doc/build-unix.md#dependency-build-instructions
2121
# * https://github.com/bitcoin/bitcoin/blob/master/depends/README.md#for-linux-including-i386-arm-cross-compilation
2222
RUN apt-get update && apt-get install -y \
23-
build-essential curl g++-multilib make \
24-
patch pkgconf python3 wget zip
23+
build-essential capnproto curl g++-multilib \
24+
libcapnp-dev make patch pkgconf python3 wget zip
2525

2626
RUN git clone --depth=1 https://github.com/bitcoin/bitcoin.git bitcoin-core
2727
RUN git clone --depth=1 https://github.com/bitcoin-core/qa-assets bitcoin-core/assets && \

projects/bitcoin-core/build.sh

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

0 commit comments

Comments
 (0)