- Issue #16754: Fix the incorrect shared library extension on linux. Introduce

two makefile macros SHLIB_SUFFIX and EXT_SUFFIX. SO now has the value of
  SHLIB_SUFFIX again (as in 2.x and 3.1). The SO macro is removed in 3.4.
This commit is contained in:
doko@ubuntu.com 2013-03-21 13:31:41 -07:00
commit 1621d77fc8
12 changed files with 89 additions and 99 deletions

View file

@ -57,7 +57,7 @@ for opt in opt_flags:
print(' '.join(libs))
elif opt == '--extension-suffix':
print(sysconfig.get_config_var('SO'))
print(sysconfig.get_config_var('EXT_SUFFIX'))
elif opt == '--abiflags':
print(sys.abiflags)