File tree Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Expand file tree Collapse file tree 2 files changed +23
-0
lines changed Original file line number Diff line number Diff line change @@ -125,6 +125,19 @@ For more information on ZMQ, see: [zmq.md](zmq.md)
125125
126126---
127127
128+ ### IPC Dependencies
129+
130+ Compiling IPC-enabled binaries with ` -DENABLE_IPC=ON ` requires the following dependency.
131+ Skip if you do not need IPC functionality.
132+
133+ ``` bash
134+ brew install capnp
135+ ```
136+
137+ For more information on IPC, see: [ multiprocess.md] ( multiprocess.md ) .
138+
139+ ---
140+
128141#### Test Suite Dependencies
129142
130143There is an included test suite that is useful for testing code changes when developing.
Original file line number Diff line number Diff line change @@ -68,6 +68,11 @@ User-Space, Statically Defined Tracing (USDT) dependencies:
6868
6969 sudo apt install systemtap-sdt-dev
7070
71+ IPC-enabled binaries are compiled with ` -DENABLE_IPC=ON ` and require the following dependencies.
72+ Skip if you do not need IPC functionality.
73+
74+ sudo apt-get install libcapnp-dev capnproto
75+
7176GUI dependencies:
7277
7378Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compile the GUI, we need to install
@@ -118,6 +123,11 @@ User-Space, Statically Defined Tracing (USDT) dependencies:
118123
119124 sudo dnf install systemtap-sdt-devel
120125
126+ IPC-enabled binaries are compiled with ` -DENABLE_IPC=ON ` and require the following dependency.
127+ Skip if you do not need IPC functionality.
128+
129+ sudo dnf install capnproto
130+
121131GUI dependencies:
122132
123133Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compile the GUI, we need to install
You can’t perform that action at this time.
0 commit comments