diff options
author | Victor Stinner <vstinner@python.org> | 2021-02-17 10:14:42 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 10:14:42 (GMT) |
commit | 801bb0b5035f8eeafe389dc082c02dfafaa07f6a (patch) | |
tree | fc0b6eac92d8d042c0cd0eab51b7240093005bed /Doc | |
parent | 6a4177516b4473bd0b5ed041d29db2af3d996b9d (diff) | |
download | cpython-801bb0b5035f8eeafe389dc082c02dfafaa07f6a.zip cpython-801bb0b5035f8eeafe389dc082c02dfafaa07f6a.tar.gz cpython-801bb0b5035f8eeafe389dc082c02dfafaa07f6a.tar.bz2 |
bpo-43103: Add configure --without-static-libpython (GH-24418)
Add a new configure --without-static-libpython option to not build
the libpythonMAJOR.MINOR.a static library and not install the
python.o object file.
Fix smelly.py and stable_abi.py tools when libpython3.10.a is
missing.
Diffstat (limited to 'Doc')
-rw-r--r-- | Doc/whatsnew/3.10.rst | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/Doc/whatsnew/3.10.rst b/Doc/whatsnew/3.10.rst index c282edc..0fba27c 100644 --- a/Doc/whatsnew/3.10.rst +++ b/Doc/whatsnew/3.10.rst @@ -820,6 +820,12 @@ Build Changes (Contributed by Victor Stinner in :issue:`42856`.) +* Add a new configure ``--without-static-libpython`` option to not build the + ``libpythonMAJOR.MINOR.a`` static library and not install the ``python.o`` + object file. + + (Contributed by Victor Stinner in :issue:`43103`.) + C API Changes ============= |