Author: Dan Villiom Podlaski Christiansen <[email protected]>
Branch: py3.5-mac-embedding
Changeset: r92704:05b4d8cf38cc
Date: 2017-10-10 15:51 +0200
http://bitbucket.org/pypy/pypy/changeset/05b4d8cf38cc/

Log:    build_cffi_imports: use cpu count rather than cpu count + 1

        For consistency with the regular translation process, we should only
        use the CPU count when building dependencies.

diff --git a/pypy/tool/build_cffi_imports.py b/pypy/tool/build_cffi_imports.py
--- a/pypy/tool/build_cffi_imports.py
+++ b/pypy/tool/build_cffi_imports.py
@@ -130,7 +130,7 @@
     status, stdout, stderr = run_subprocess(
         'make',
         [
-            '-s', '-j' + str(multiprocessing.cpu_count() + 1),
+            '-s', '-j' + str(multiprocessing.cpu_count()),
             'install', 'DESTDIR={}/'.format(destdir),
         ],
         cwd=sources,
_______________________________________________
pypy-commit mailing list
[email protected]
https://mail.python.org/mailman/listinfo/pypy-commit

Reply via email to