Kaydet (Commit) db846037 authored tarafından Georg Brandl's avatar Georg Brandl

Bug #1655392: don't add -L/usr/lib/pythonX.Y/config to the LDFLAGS

returned by python-config if Python was built with --enable-shared
because that prevented the shared library from being used.
üst ea3307bf
...@@ -768,6 +768,10 @@ Tools/Demos ...@@ -768,6 +768,10 @@ Tools/Demos
Build Build
----- -----
- Bug #1655392: don't add -L/usr/lib/pythonX.Y/config to the LDFLAGS
returned by python-config if Python was built with --enable-shared
because that prevented the shared library from being used.
- Patch #1569798: fix a bug in distutils when building Python from a - Patch #1569798: fix a bug in distutils when building Python from a
directory within sys.exec_prefix. directory within sys.exec_prefix.
......
...@@ -45,7 +45,9 @@ elif opt in ('--includes', '--cflags'): ...@@ -45,7 +45,9 @@ elif opt in ('--includes', '--cflags'):
elif opt in ('--libs', '--ldflags'): elif opt in ('--libs', '--ldflags'):
libs = getvar('LIBS').split() + getvar('SYSLIBS').split() libs = getvar('LIBS').split() + getvar('SYSLIBS').split()
libs.append('-lpython'+pyver) libs.append('-lpython'+pyver)
if opt == '--ldflags': # add the prefix/lib/pythonX.Y/config dir, but only if there is no
# shared library in prefix/lib/.
if opt == '--ldflags' and not getvar('Py_ENABLE_SHARED'):
libs.insert(0, '-L' + getvar('LIBPL')) libs.insert(0, '-L' + getvar('LIBPL'))
print ' '.join(libs) print ' '.join(libs)
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment