diff options
author | Ned Deily <nad@acm.org> | 2013-06-24 21:22:09 (GMT) |
---|---|---|
committer | Ned Deily <nad@acm.org> | 2013-06-24 21:22:09 (GMT) |
commit | 51cee7d24a8927a91f8c005590583346161798b8 (patch) | |
tree | 9e9e89aaa00cf45d25d6f73ef9617858b7f72c38 /Doc/extending | |
parent | 2b310dd8b9993cd5e9068f6ff127ee1e098c75f0 (diff) | |
download | cpython-51cee7d24a8927a91f8c005590583346161798b8.zip cpython-51cee7d24a8927a91f8c005590583346161798b8.tar.gz cpython-51cee7d24a8927a91f8c005590583346161798b8.tar.bz2 |
Issue #18164: Clarify the embedding docs regarding link options.
Diffstat (limited to 'Doc/extending')
-rw-r--r-- | Doc/extending/embedding.rst | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/Doc/extending/embedding.rst b/Doc/extending/embedding.rst index c68aff8..bd66086 100644 --- a/Doc/extending/embedding.rst +++ b/Doc/extending/embedding.rst @@ -307,11 +307,13 @@ examine Python's :file:`Makefile` (use :func:`sysconfig.get_makefile_filename` to find its location) and compilation options. In this case, the :mod:`sysconfig` module is a useful tool to programmatically extract the configuration values that you will want to -combine together: +combine together. For example: .. code-block:: python >>> import sysconfig + >>> sysconfig.get_config_var('LIBS') + '-lpthread -ldl -lutil' >>> sysconfig.get_config_var('LINKFORSHARED') '-Xlinker -export-dynamic' |