Commit 11991737 authored by Shenghou Ma's avatar Shenghou Ma Committed by Russ Cox

cmd/dist: redure max background tasks nr. when building on ARM

R=rsc
CC=golang-dev
https://golang.org/cl/5642063
parent 56ade2d8
......@@ -147,6 +147,7 @@ static struct {
char *cmd;
} bg[MAXBG];
static int nbg;
static int maxnbg = nelem(bg);
static void bgwait1(void);
......@@ -158,7 +159,7 @@ genrun(Buf *b, char *dir, int mode, Vec *argv, int wait)
Buf cmd;
char *q;
while(nbg >= nelem(bg))
while(nbg >= maxnbg)
bgwait1();
// Generate a copy of the command to show in a log.
......@@ -665,6 +666,9 @@ main(int argc, char **argv)
fatal("unknown architecture: %s", u.machine);
}
if(strcmp(gohostarch, "arm") == 0)
maxnbg = 1;
init();
xmain(argc, argv);
bfree(&b);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment