@@ -17,7 +17,6 @@ might want to use `our official images
1717contain the latest releases of several Python versions, along with git head,
1818and are provided for development and testing purposes only.
1919
20-
2120.. seealso ::
2221
2322 The :ref: `quick-reference ` gives brief summary of the process from
@@ -166,7 +165,9 @@ Once ``configure`` is done, you can then compile CPython with:
166165 This will build CPython with only warnings and errors being printed to
167166stderr and utilize up to 2 CPU cores. If you are using a multi-core machine
168167with more than 2 cores (or a single-core machine), you can adjust the number
169- passed into the ``-j `` flag to match the number of cores you have.
168+ passed into the ``-j `` flag to match the number of cores you have (or if your
169+ version of Make supports it, you can use ``-j `` without a number and Make
170+ will not limit the number of steps that can run simultaneously.).
170171
171172At the end of the build you should see a success message, possibly followed
172173by a list of extension modules that haven't been built because their
@@ -267,8 +268,8 @@ to build.
267268 readme `_ for more details. If you have VS 2008 but not 2010 you can use the
268269 build files in the `PC/VS9.0 directory `_, see the `VS9 readme `_ for details.
269270
270- .. note :: If you are using the Windows Subsystem for Linux (WSL), clone the
271- repository from a native Windows terminal program like cmd.exe command prompt
271+ .. note :: If you are using the Windows Subsystem for Linux (WSL), clone the
272+ repository from a native Windows terminal program like cmd.exe command prompt
272273 or PowerShell as well as use a build of git targeted for Windows, e.g., the
273274 official one from `<https://git-scm.com >`_. Otherwise, Visual Studio will
274275 not be able to find all the project's files and will fail the build.
@@ -378,7 +379,7 @@ for the header and library files to your ``configure`` command. For example,
378379
379380with **Homebrew **::
380381
381- $ brew install openssl xz
382+ $ brew install openssl xz gdbm
382383
383384and ``configure `` Python versions >= 3.7::
384385
@@ -396,7 +397,7 @@ and ``make``::
396397
397398or **MacPorts **::
398399
399- $ sudo port install pkgconfig openssl xz
400+ $ sudo port install pkgconfig openssl xz gdbm
400401
401402and ``configure ``::
402403
0 commit comments