You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
14093d5 doc: add distcc to productivity notes (Sjors Provoost)
Pull request description:
If you have more than one computer at your disposal, you can use [distcc](https://www.distcc.org) to speed up compilation.
ACKs for top commit:
laanwj:
ACK 14093d5
brunoerg:
ACK 14093d5
w0xlt:
ACK bitcoin/bitcoin@14093d5
Tree-SHA512: 2c436bdea5ab750330055778eb5817361d16b046f219d53692577439e2fd8403febf78ac8e8b20ed158c650c76252b50cfc91f4ec8375cdd522cc408068d547b
Copy file name to clipboardExpand all lines: doc/productivity.md
+5Lines changed: 5 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,6 +9,7 @@ Table of Contents
9
9
*[Disable features with `./configure`](#disable-features-with-configure)
10
10
*[Make use of your threads with `make -j`](#make-use-of-your-threads-with-make--j)
11
11
*[Only build what you need](#only-build-what-you-need)
12
+
*[Compile on multiple machines](#compile-on-multiple-machines)
12
13
*[Multiple working directories with `git worktrees`](#multiple-working-directories-with-git-worktrees)
13
14
*[Interactive "dummy rebases" for fixups and execs with `git merge-base`](#interactive-dummy-rebases-for-fixups-and-execs-with-git-merge-base)
14
15
*[Writing code](#writing-code)
@@ -81,6 +82,10 @@ make -C src bitcoin_bench
81
82
82
83
(You can and should combine this with `-j`, as above, for a parallel build.)
83
84
85
+
### Compile on multiple machines
86
+
87
+
If you have more than one computer at your disposal, you can use [distcc](https://www.distcc.org) to speed up compilation. This is easiest when all computers run the same operating system and compiler version.
88
+
84
89
### Multiple working directories with `git worktrees`
85
90
86
91
If you work with multiple branches or multiple copies of the repository, you should try `git worktrees`.
0 commit comments