]> granicus.if.org Git - python/commitdiff
9806: add --extension-suffix option to python-config.
authorGeorg Brandl <georg@python.org>
Sun, 12 Sep 2010 17:14:26 +0000 (17:14 +0000)
committerGeorg Brandl <georg@python.org>
Sun, 12 Sep 2010 17:14:26 +0000 (17:14 +0000)
Misc/NEWS
Misc/python-config.in

index fe8fd5d9b2ff581c48059bf207b0c01dec92efa6..7b06c69808c49e05c9a63733a6502b32659ef265 100644 (file)
--- 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Ă©.
 
index 26605747f31df719882aedb18613d88074e8a878..841cdfa07008f9fecffcadc28598d6aa20039d1c 100644 (file)
@@ -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'))