Skip to content

Commit 3dcd01d

Browse files
authored
Use 'make -j8' for macOS (#1545)
1 parent f1b7e25 commit 3dcd01d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

getting-started/setup-building.rst

+1-1
Original file line numberDiff line numberDiff line change
@@ -874,7 +874,7 @@ some of CPython's modules (for example, ``zlib``).
874874

875875
And finally, run ``make``::
876876

877-
$ make -s -j $(nproc)
877+
$ make -s -j8
878878

879879
There will sometimes be optional modules added for a new release which
880880
won't yet be identified in the OS-level build dependencies. In those cases,

index.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ instructions please see the :ref:`setup guide <setup>`.
4949

5050
.. code-block:: shell
5151
52-
./configure --with-pydebug && make -j $(nproc)
52+
./configure --with-pydebug && make -j8
5353
5454
.. tab:: Windows
5555

@@ -74,7 +74,7 @@ instructions please see the :ref:`setup guide <setup>`.
7474

7575
.. code-block:: shell
7676
77-
./python.exe -m test -j3
77+
./python.exe -m test -j8
7878
7979
Note: :ref:`Most <mac-python.exe>` macOS systems use
8080
:file:`./python.exe` in order to avoid filename conflicts with

0 commit comments

Comments
 (0)