aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorandroid-build-team Robot <android-build-team-robot@google.com>2019-05-25 23:16:36 +0000
committerandroid-build-team Robot <android-build-team-robot@google.com>2019-05-25 23:16:36 +0000
commit3f0de6d00ec375e7050280b21594d8b1f6b665ef (patch)
treefc87a48ffff5db7ab09e7f82e2d0de19f2dbbaec
parente73ab096a89eb0cc6d6eb479d9fb01d79df27e63 (diff)
parentf2562eb417e7671b870a2c5cb8391566782f73ea (diff)
downloadbuild_soong-3f0de6d00ec375e7050280b21594d8b1f6b665ef.tar.gz
build_soong-3f0de6d00ec375e7050280b21594d8b1f6b665ef.tar.bz2
build_soong-3f0de6d00ec375e7050280b21594d8b1f6b665ef.zip
Snap for 5605988 from f2562eb417e7671b870a2c5cb8391566782f73ea to qt-release
Change-Id: I083a74acd8ac8e54d027ab6563e239d7a56778a0
-rw-r--r--cc/builder.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/cc/builder.go b/cc/builder.go
index f9b309d2..fc5400c7 100644
--- a/cc/builder.go
+++ b/cc/builder.go
@@ -123,11 +123,11 @@ var (
_ = pctx.SourcePathVariable("xzCmd", "prebuilts/build-tools/${config.HostPrebuiltTag}/bin/xz")
// b/132822437: objcopy uses a file descriptor per .o file when called on .a files, which runs the system out of
- // file descriptors on darwin. Limit concurrent calls to 10 on darwin.
+ // file descriptors on darwin. Limit concurrent calls to 5 on darwin.
darwinStripPool = func() blueprint.Pool {
if runtime.GOOS == "darwin" {
return pctx.StaticPool("darwinStripPool", blueprint.PoolParams{
- Depth: 10,
+ Depth: 5,
})
} else {
return nil