Document that --enable-shared puts PIC objects into the static libpython.

Fixes #589429.
This commit is contained in:
Martin v. Löwis 2002-08-03 21:38:27 +00:00
parent d64845dbbe
commit 65069670b5
1 changed files with 7 additions and 1 deletions

6
README
View File

@ -644,6 +644,12 @@ 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.
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
---------------------------------------