diff options
author | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-04 23:26:28 +0000 |
---|---|---|
committer | Dan Goodliffe <dan@randomdan.homeip.net> | 2018-03-04 23:26:28 +0000 |
commit | bf0bdfa4990207558a35d2fd98fa86dca74e6924 (patch) | |
tree | 4687779ac6140a04ed153b51e9b916cb0c288a86 | |
parent | Remove some old dead things, update all manifests for the remaining things (diff) | |
download | portage-bf0bdfa4990207558a35d2fd98fa86dca74e6924.tar.bz2 portage-bf0bdfa4990207558a35d2fd98fa86dca74e6924.tar.xz portage-bf0bdfa4990207558a35d2fd98fa86dca74e6924.zip |
B2 timeout hack
Add -l60 to b2 call... it's a timeout feature, but right now appears to
stop b2 pinning a CPU core polling for its children to finish.
-rw-r--r-- | eclass/bjam.eclass | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/eclass/bjam.eclass b/eclass/bjam.eclass index affc7db..5fad5ac 100644 --- a/eclass/bjam.eclass +++ b/eclass/bjam.eclass @@ -21,7 +21,7 @@ src_test() { } bjambuild() { - setarch $(uname -m) -RL b2 ${BJAMOPTS} variant=release -q $@ || die + setarch $(uname -m) -RL b2 -l60 ${BJAMOPTS} variant=release -q $@ || die } bjaminstall() { |