diff options
author | Victor Stinner <vstinner@python.org> | 2021-04-12 21:27:35 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-12 21:27:35 (GMT) |
commit | 85918e4ab6e9410008aef6dedf000d24b3e120ea (patch) | |
tree | e4c282aec978ebb45778dbd3897978aa42f4cea7 /Doc/using | |
parent | 20ac34772aa9805ccbf082e700f2b033291ff5d2 (diff) | |
download | cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.zip cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.tar.gz cpython-85918e4ab6e9410008aef6dedf000d24b3e120ea.tar.bz2 |
bpo-43774: Add more links to configure options (GH-25363)
Diffstat (limited to 'Doc/using')
-rw-r--r-- | Doc/using/configure.rst | 13 | ||||
-rw-r--r-- | Doc/using/unix.rst | 1 |
2 files changed, 11 insertions, 3 deletions
diff --git a/Doc/using/configure.rst b/Doc/using/configure.rst index 85c9018..e7fad7f 100644 --- a/Doc/using/configure.rst +++ b/Doc/using/configure.rst @@ -19,7 +19,10 @@ General Options .. cmdoption:: --enable-loadable-sqlite-extensions Support loadable extensions in the :mod:`_sqlite` extension module (default - is no), see the :mod:`sqlite3` module. + is no). + + See the :meth:`sqlite3.Connection.enable_load_extension` method of the + :mod:`sqlite3` module. .. versionadded:: 3.6 @@ -54,8 +57,9 @@ General Options .. cmdoption:: --with-tzpath=<list of absolute paths separated by pathsep> - Select the default time zone search path for :data:`zoneinfo.TZPATH`, - see the :mod:`zoneinfo` module. + Select the default time zone search path for :data:`zoneinfo.TZPATH`. + See the :ref:`Compile-time configuration + <zoneinfo_data_compile_time_config>` of the :mod:`zoneinfo` module. Default: ``/usr/share/zoneinfo:/usr/lib/zoneinfo:/usr/share/lib/zoneinfo:/etc/zoneinfo``. @@ -287,6 +291,9 @@ Debug options Enable DTrace support (default is no). + See :ref:`Instrumenting CPython with DTrace and SystemTap + <instrumentation>`. + .. versionadded:: 3.6 .. cmdoption:: --with-address-sanitizer diff --git a/Doc/using/unix.rst b/Doc/using/unix.rst index b5b26ec..09dd5b0 100644 --- a/Doc/using/unix.rst +++ b/Doc/using/unix.rst @@ -168,6 +168,7 @@ Custom OpenSSL $ popd 3. Build Python with custom OpenSSL + (see the configure `--with-openssl` and `--with-openssl-rpath` options) .. code-block:: shell-session |