Skip to content

Commit cccbc5f

Browse files
committed
Merge bitcoin/bitcoin#25359: doc: add distcc to productivity notes
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
2 parents a55606c + 14093d5 commit cccbc5f

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

doc/productivity.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,7 @@ Table of Contents
99
* [Disable features with `./configure`](#disable-features-with-configure)
1010
* [Make use of your threads with `make -j`](#make-use-of-your-threads-with-make--j)
1111
* [Only build what you need](#only-build-what-you-need)
12+
* [Compile on multiple machines](#compile-on-multiple-machines)
1213
* [Multiple working directories with `git worktrees`](#multiple-working-directories-with-git-worktrees)
1314
* [Interactive "dummy rebases" for fixups and execs with `git merge-base`](#interactive-dummy-rebases-for-fixups-and-execs-with-git-merge-base)
1415
* [Writing code](#writing-code)
@@ -81,6 +82,10 @@ make -C src bitcoin_bench
8182

8283
(You can and should combine this with `-j`, as above, for a parallel build.)
8384

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+
8489
### Multiple working directories with `git worktrees`
8590

8691
If you work with multiple branches or multiple copies of the repository, you should try `git worktrees`.

0 commit comments

Comments
 (0)