edcce3145a
dsymutil seems to kill the machine when too many processes are run in parallel, so we need to use a pool to limit the concurrency when passing large -j to Ninja (e.g. Goma build). Change-Id: I84404291db4781f86268256ab888cef8d07c770e Reviewed-on: https://skia-review.googlesource.com/c/skia/+/234477 Commit-Queue: Jim Van Verth <jvanverth@google.com> Auto-Submit: Ben Wagner aka dogben <benjaminwagner@google.com> Reviewed-by: Jim Van Verth <jvanverth@google.com>
11 lines
216 B
Python
11 lines
216 B
Python
#!/usr/bin/env python
|
|
#
|
|
# Copyright 2019 Google Inc.
|
|
#
|
|
# Use of this source code is governed by a BSD-style license that can be
|
|
# found in the LICENSE file.
|
|
|
|
import multiprocessing
|
|
|
|
print multiprocessing.cpu_count()
|