0
0
mirror of https://github.com/termux/termux-packages.git synced 2024-12-12 00:10:52 +00:00
termux-packages/packages/pypy/0009-dummy-cpu_count.patch
2024-08-03 00:20:29 +08:00

15 lines
452 B
Diff

--- a/lib_pypy/pypy_tools/build_cffi_imports.py
+++ b/lib_pypy/pypy_tools/build_cffi_imports.py
@@ -39,6 +39,11 @@
("xx", None), # for testing: 'None' should be completely ignored
]
+def fake_cpu_count():
+ return 1
+
+multiprocessing.cpu_count = fake_cpu_count
+
# for distribution, we may want to fetch dependencies not provided by
# the OS, such as a recent openssl/libressl.
curdir = os.path.abspath(os.path.dirname(__file__))