diff options
author | Sjors Provoost <sjors@sprovoost.nl> | 2022-06-13 15:48:54 +0200 |
---|---|---|
committer | Sjors Provoost <sjors@sprovoost.nl> | 2022-06-13 16:13:11 +0200 |
commit | 14093d5d243f6eb9cfef721c80f92848d95032ee (patch) | |
tree | efd5852250dd0786a938dfa4d356b3e7a00ae572 | |
parent | 5174a139c92c1238f9700d06e362dc628d81a0a9 (diff) |
doc: add distcc to productivity notes
-rw-r--r-- | doc/productivity.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/productivity.md b/doc/productivity.md index a01c6f545d..e9b7bc270c 100644 --- a/doc/productivity.md +++ b/doc/productivity.md @@ -9,6 +9,7 @@ Table of Contents * [Disable features with `./configure`](#disable-features-with-configure) * [Make use of your threads with `make -j`](#make-use-of-your-threads-with-make--j) * [Only build what you need](#only-build-what-you-need) + * [Compile on multiple machines](#compile-on-multiple-machines) * [Multiple working directories with `git worktrees`](#multiple-working-directories-with-git-worktrees) * [Interactive "dummy rebases" for fixups and execs with `git merge-base`](#interactive-dummy-rebases-for-fixups-and-execs-with-git-merge-base) * [Writing code](#writing-code) @@ -81,6 +82,10 @@ make -C src bitcoin_bench (You can and should combine this with `-j`, as above, for a parallel build.) +### Compile on multiple machines + +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. + ### Multiple working directories with `git worktrees` If you work with multiple branches or multiple copies of the repository, you should try `git worktrees`. |