summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGeorg Brandl <georg@python.org>2010-09-12 17:14:26 (GMT)
committerGeorg Brandl <georg@python.org>2010-09-12 17:14:26 (GMT)
commitb084b48cec806dbc138c4efee338e422aefe538e (patch)
tree301131c4a9a46f7a878d49f114be7896b449e57c
parentd4ac96a3363b7bb9f587abfd41fda3299391fb7d (diff)
downloadcpython-b084b48cec806dbc138c4efee338e422aefe538e.zip
cpython-b084b48cec806dbc138c4efee338e422aefe538e.tar.gz
cpython-b084b48cec806dbc138c4efee338e422aefe538e.tar.bz2
9806: add --extension-suffix option to python-config.
-rw-r--r--Misc/NEWS4
-rw-r--r--Misc/python-config.in4
2 files changed, 7 insertions, 1 deletions
diff --git a/Misc/NEWS b/Misc/NEWS
index fe8fd5d..7b06c69 100644
--- a/Misc/NEWS
+++ b/Misc/NEWS
@@ -137,6 +137,10 @@ Tools/Demos
Build
-----
+- Issue #9806: python-config now has an ``--extension-suffix`` option that
+ outputs the suffix for dynamic libraries including the ABI version name
+ defined by PEP 3149.
+
- Issue #941346: Improve the build process under AIX and allow Python to
be built as a shared library. Patch by Sébastien Sablé.
diff --git a/Misc/python-config.in b/Misc/python-config.in
index 2660574..841cdfa 100644
--- a/Misc/python-config.in
+++ b/Misc/python-config.in
@@ -6,7 +6,7 @@ import sys
import sysconfig
valid_opts = ['prefix', 'exec-prefix', 'includes', 'libs', 'cflags',
- 'ldflags', 'help']
+ 'ldflags', 'extension-suffix', 'help']
def exit_with_usage(code=1):
print("Usage: {0} [{1}]".format(
@@ -54,3 +54,5 @@ for opt in opt_flags:
libs.extend(getvar('LINKFORSHARED').split())
print(' '.join(libs))
+ elif opt == '--extension-suffix':
+ print(sysconfig.get_config_var('SO'))