OLD | NEW |
1 # Tips for improving build speed on Linux | 1 # Tips for improving build speed on Linux |
2 | 2 |
3 This list is sorted such that the largest speedup is first; see | 3 This list is sorted such that the largest speedup is first; see |
4 [Linux build instructions](linux_build_instructions.md) for context and | 4 [Linux build instructions](linux_build_instructions.md) for context and |
5 [Faster Builds](common_build_tasks.md) for non-Linux-specific techniques. | 5 [Faster Builds](common_build_tasks.md) for non-Linux-specific techniques. |
6 | 6 |
7 [TOC] | 7 [TOC] |
8 | 8 |
9 ## Use goma | 9 ## Use goma |
10 | 10 |
11 If you work at Google, you can use goma for distributed builds; this is similar | 11 If you work at Google, you can use goma for distributed builds; this is similar |
(...skipping 136 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
148 debug build, you will need about 20 GB. Less for just building the chrome target | 148 debug build, you will need about 20 GB. Less for just building the chrome target |
149 or for a release build. | 149 or for a release build. |
150 | 150 |
151 Quick and dirty benchmark numbers on a HP Z600 (Intel core i7, 16 cores | 151 Quick and dirty benchmark numbers on a HP Z600 (Intel core i7, 16 cores |
152 hyperthreaded, 12 GB RAM) | 152 hyperthreaded, 12 GB RAM) |
153 | 153 |
154 * With tmpfs: | 154 * With tmpfs: |
155 * 12m:20s | 155 * 12m:20s |
156 * Without tmpfs | 156 * Without tmpfs |
157 * 15m:40s | 157 * 15m:40s |
OLD | NEW |