]> granicus.if.org Git - python/commitdiff
Document that --enable-shared puts PIC objects into the static libpython.
authorMartin v. Löwis <martin@v.loewis.de>
Sat, 3 Aug 2002 21:38:27 +0000 (21:38 +0000)
committerMartin v. Löwis <martin@v.loewis.de>
Sat, 3 Aug 2002 21:38:27 +0000 (21:38 +0000)
Fixes #589429.

README

diff --git a/README b/README
index 1719385a372cca92346aef4be606cf9705e7bacb..de1ec59a1ea74e6677812e430e4633ddd761d260 100644 (file)
--- a/README
+++ b/README
@@ -642,7 +642,13 @@ Building a shared libpython
 Starting with Python 2.3, the majority of the interpreter can be built
 into a shared library, which can then be used by the interpreter 
 executable, and by applications embedding Python. To enable this feature,
-configure with --enable-shared.
+configure with --enable-shared. 
+
+If you do so, a static library will be created in addition to the
+shared library, which uses the same object files as the shared library
+In particular, the library likely object files using
+position-independent code (PIC) if PIC flags are needed for the shared
+library.
 
 
 Configuring additional built-in modules