[Python-checkins] r45946 - python/branches/release24-maint/README

martin.v.loewis python-checkins at python.org
Wed May 10 06:33:25 CEST 2006


Author: martin.v.loewis
Date: Wed May 10 06:33:22 2006
New Revision: 45946

Modified:
   python/branches/release24-maint/README
Log:
Document C++ as a build requirement.


Modified: python/branches/release24-maint/README
==============================================================================
--- python/branches/release24-maint/README	(original)
+++ python/branches/release24-maint/README	Wed May 10 06:33:22 2006
@@ -166,6 +166,13 @@
 configure script -- see the section below on configuration options and
 variables.  When it's done, you are ready to run make.
 
+As a prerequisite, you need at least a C compiler on your system,
+along with header files for the standard C library. You also need
+a C++ compiler, unless you pass --without-cxx to configure. In
+addition, you need header files and libraries for various optional
+extension modules; if these are missing, the build process will
+skip building these modules.
+
 To build Python, you normally type "make" in the toplevel directory.
 If you have changed the configuration, the Makefile may have to be
 rebuilt.  In this case you may have to run make again to correctly


More information about the Python-checkins mailing list