Skip to content

Commit 7f5a35c

Browse files
committed
doc: Add deps install notes for multiprocess
These just mirror the content in src/ipc/libmultiprocess/doc/install.md
1 parent 679bb2a commit 7f5a35c

File tree

2 files changed

+23
-0
lines changed

2 files changed

+23
-0
lines changed

doc/build-osx.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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

130143
There is an included test suite that is useful for testing code changes when developing.

doc/build-unix.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff 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+
7176
GUI dependencies:
7277

7378
Bitcoin 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+
121131
GUI dependencies:
122132

123133
Bitcoin Core includes a GUI built with the cross-platform Qt Framework. To compile the GUI, we need to install

0 commit comments

Comments
 (0)