diff options
author | Victor Stinner <vstinner@python.org> | 2021-02-17 11:14:42 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-17 11:14:42 +0100 |
commit | 801bb0b5035f8eeafe389dc082c02dfafaa07f6a (patch) | |
tree | fc0b6eac92d8d042c0cd0eab51b7240093005bed /Tools/scripts/smelly.py | |
parent | 6a4177516b4473bd0b5ed041d29db2af3d996b9d (diff) | |
download | cpython-git-801bb0b5035f8eeafe389dc082c02dfafaa07f6a.tar.gz |
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 'Tools/scripts/smelly.py')
-rwxr-xr-x | Tools/scripts/smelly.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Tools/scripts/smelly.py b/Tools/scripts/smelly.py index e8a375c808..fb01660dea 100755 --- a/Tools/scripts/smelly.py +++ b/Tools/scripts/smelly.py @@ -136,11 +136,14 @@ def check_extensions(): def main(): + nsymbol = 0 + # static library LIBRARY = sysconfig.get_config_var('LIBRARY') if not LIBRARY: raise Exception("failed to get LIBRARY variable from sysconfig") - nsymbol = check_library(LIBRARY) + if os.path.exists(LIBRARY): + nsymbol += check_library(LIBRARY) # dynamic library LDLIBRARY = sysconfig.get_config_var('LDLIBRARY') |