Skip to content

Use make -j8 for macOS #1545

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Apr 30, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion getting-started/setup-building.rst
Original file line number Diff line number Diff line change
Expand Up @@ -874,7 +874,7 @@ some of CPython's modules (for example, ``zlib``).

And finally, run ``make``::

$ make -s -j $(nproc)
$ make -s -j8

There will sometimes be optional modules added for a new release which
won't yet be identified in the OS-level build dependencies. In those cases,
Expand Down
4 changes: 2 additions & 2 deletions index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ instructions please see the :ref:`setup guide <setup>`.

.. code-block:: shell

./configure --with-pydebug && make -j $(nproc)
./configure --with-pydebug && make -j8

.. tab:: Windows

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

.. code-block:: shell

./python.exe -m test -j3
./python.exe -m test -j8

Note: :ref:`Most <mac-python.exe>` macOS systems use
:file:`./python.exe` in order to avoid filename conflicts with
Expand Down
Loading