diff options
author | Victor Stinner <vstinner@python.org> | 2021-04-08 20:32:21 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-08 20:32:21 (GMT) |
commit | a41782cc84bcd813209a03e6e11c60e77dbc7718 (patch) | |
tree | 76e53b2a0c0e68d1413b1a0171718e7196267cf7 /Doc/howto | |
parent | d92c59f48680122ce0e4d1ccf69d92b983e8db01 (diff) | |
download | cpython-a41782cc84bcd813209a03e6e11c60e77dbc7718.zip cpython-a41782cc84bcd813209a03e6e11c60e77dbc7718.tar.gz cpython-a41782cc84bcd813209a03e6e11c60e77dbc7718.tar.bz2 |
bpo-43774: Document configure options (GH-25283)
Add Doc/using/configure.rst documentation to document configure,
preprocessor, compiler and linker options.
Add a new section about the "Python debug build".
Diffstat (limited to 'Doc/howto')
-rw-r--r-- | Doc/howto/instrumentation.rst | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Doc/howto/instrumentation.rst b/Doc/howto/instrumentation.rst index f0081e4..ab6240d 100644 --- a/Doc/howto/instrumentation.rst +++ b/Doc/howto/instrumentation.rst @@ -266,7 +266,7 @@ should instead read: probe process("python").library("libpython3.6dm.so.1.0").mark("function__entry") { -(assuming a debug build of CPython 3.6) +(assuming a :ref:`debug build <debug-build>` of CPython 3.6) Available static markers |