[Python-checkins] devguide: Make sure people notice what extension modules were not built.

brett.cannon python-checkins at python.org
Wed Jan 19 05:48:22 CET 2011


brett.cannon pushed acf33b3bb4ac to devguide:

http://hg.python.org/devguide/rev/acf33b3bb4ac
changeset:   141:acf33b3bb4ac
tag:         tip
user:        Brett Cannon <brett at python.org>
date:        Tue Jan 18 20:48:17 2011 -0800
summary:
  Make sure people notice what extension modules were not built.

files:
  setup.rst

diff --git a/setup.rst b/setup.rst
--- a/setup.rst
+++ b/setup.rst
@@ -101,11 +101,19 @@
 with more than 2 cores (or a single-core machine), you can adjust the number
 passed into the ``-j`` flag to match the number of cores you have.
 
+Do take note of what modules were **not** built as stated at the end of your
+build. More than likely you are missing a dependency for the module(s) that
+were not built, and so you can install the dependencies and re-run ``make``.
+Otherwise the build failed and thus should be fixed (at least with a bug being
+filed on the `issue tracker`_).
+
 Once Python is done building you will then have a working build of Python
 that can be run in-place; ``./python`` on most machines (and what is used in
 all examples), ``./python.exe`` on OS X (when on a case-insensitive filesystem,
 which is the default).
 
+.. _issue tracker: http://bugs.python.org
+
 
 Windows
 '''''''

--
Repository URL: http://hg.python.org/devguide


More information about the Python-checkins mailing list