Commit 55512dcc authored by Fred Drake's avatar Fred Drake

Clarify a statement regarding both shared and static library.

Closes SF bug #774480.
parent 6c497099
...@@ -763,11 +763,10 @@ into a shared library, which can then be used by the interpreter ...@@ -763,11 +763,10 @@ into a shared library, which can then be used by the interpreter
executable, and by applications embedding Python. To enable this feature, 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 If you enable this feature, the same object files will be used to create
shared library, which uses the same object files as the shared library a static library. In particular, the static library will contain object
In particular, the library likely object files using files using position-independent code (PIC) on platforms where PIC flags
position-independent code (PIC) if PIC flags are needed for the shared are needed for the shared library.
library.
Configuring additional built-in modules Configuring additional built-in modules
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment