cmd/go: support POSIX jobserver #36868
Labels
FeatureRequest
Issues asking for a new feature that does not need a proposal.
NeedsInvestigation
Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
The automatic parallelism in
cmd/go
is wonderful when the command is used interactively. However, it interacts poorly when another build system is drivingcmd/go
. The driving build system cannot safely start multiple Go builds without overloading the system, and it cannot detect when a Go build is doing very little work so it should start other work.GNU make has an elegant solution for this, the "jobserver." It is much simpler than the name suggests:
https://www.gnu.org/software/make/manual/html_node/POSIX-Jobserver.html
I would like to propose that
cmd/go
parses the environment variableMAKEFLAGS
for--jobserver-auth=R,W
, and if it finds valid FDsR
andW
then it uses tokens from the pipe to control its parallelism. This will makecmd/go
play nicely with GNU make and other build systems that use the jobserver, like redo.The text was updated successfully, but these errors were encountered: