diff options
author | Victor Stinner <vstinner@redhat.com> | 2019-04-24 14:10:09 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 14:10:09 (GMT) |
commit | 6c44fde3e03079e0c69f823dafbe04af50b5bd0d (patch) | |
tree | a55128492c6e6900b92279c304d81ef26ea03cdf /configure | |
parent | 4f5a3493b534a95fbb01d593b1ffe320db6b395e (diff) | |
download | cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.zip cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.tar.gz cpython-6c44fde3e03079e0c69f823dafbe04af50b5bd0d.tar.bz2 |
bpo-36707: Remove the "m" flag (pymalloc) from SOABI (GH-12931)
"./configure --with-pymalloc" no longer adds the "m" flag to SOABI
(sys.implementation.cache_tag).
Enabling or disabling pymalloc has no impact on the ABI.
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -11238,7 +11238,6 @@ then $as_echo "#define WITH_PYMALLOC 1" >>confdefs.h - ABIFLAGS="${ABIFLAGS}m" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $with_pymalloc" >&5 $as_echo "$with_pymalloc" >&6; } @@ -15086,12 +15085,13 @@ $as_echo "#define AC_APPLE_UNIVERSAL_BUILD 1" >>confdefs.h # * The Python implementation (always 'cpython-' for us) # * The major and minor version numbers # * --with-pydebug (adds a 'd') -# * --with-pymalloc (adds a 'm') -# * --with-wide-unicode (adds a 'u') # # Thus for example, Python 3.2 built with wide unicode, pydebug, and pymalloc, # would get a shared library ABI version tag of 'cpython-32dmu' and shared # libraries would be named 'foo.cpython-32dmu.so'. +# +# In Python 3.2 and older, --with-wide-unicode added a 'u' flag. +# In Python 3.7 and older, --with-pymalloc added a 'm' flag. { $as_echo "$as_me:${as_lineno-$LINENO}: checking ABIFLAGS" >&5 $as_echo_n "checking ABIFLAGS... " >&6; } |