File: makeparallel.1.md

package info (click to toggle)
android-platform-build 1%3A10.0.0%2Br36-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 7,508 kB
  • sloc: python: 19,710; javascript: 6,836; makefile: 3,841; cpp: 3,384; cs: 3,339; sh: 2,058; java: 1,486; ansic: 791; xml: 84
file content (48 lines) | stat: -rw-r--r-- 1,794 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
% MAKEPARALLEL(1)
% The Android Open Source Project

# NAME

makeparallel - command line tool for communication with the GNU make jobserver

# SYNOPSIS

To run a multi-thread or multi-process binary inside GNU make using
makeparallel, add:

```Makefile
	+makeparallel subprocess arguments
```
to a rule.  For example, to wrap ninja in make, use something like:
```Makefile
	+makeparallel ninja -f build.ninja
```
To determine the size of the jobserver pool, add:
```Makefile
	+makeparallel echo > make.jobs
```
to a rule that is guarantee to run alone (i.e. all other rules are either
dependencies of the makeparallel rule, or the depend on the makeparallel
rule.  The output file will contain the `-j<num>` flag passed to the parent
make process, or `-j1` if no flag was found.  Since GNU make will run
makeparallel during the execution phase, after all variables have been
set and evaluated, it is not possible to get the output of makeparallel
into a make variable.  Instead, use a shell substitution to read the output
file directly in a recipe.  For example:
```Makefile
	echo Make was started with $$(cat make.jobs)
```

# DESCRIPTION

`makeparallel` communicates with the [GNU make jobserver](http://make.mad-scientist.net/papers/jobserver-implementation/)
in order claim all available jobs, and then passes the number of jobs
claimed to a subprocess with `-j<jobs>`.

The number of available jobs is determined by reading tokens from the jobserver
until a read would block.  If the makeparallel rule is the only one running the
number of jobs will be the total size of the jobserver pool, i.e. the value
passed to make with `-j`.  Any jobs running in parallel with with the
makeparellel rule will reduce the measured value, and thus reduce the
parallelism available to the subprocess.