This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: python-config --ldflags gives broken output when statically linking Python with --as-needed
Type: behavior Stage:
Components: Build, Cross-Build Versions: Python 2.7
process
Status: open Resolution:
Dependencies: Superseder:
Assigned To: Nosy List: Max.Cantor, zach.ware
Priority: normal Keywords:

Created on 2013-04-16 20:22 by Max.Cantor, last changed 2022-04-11 14:57 by admin.

Messages (2)
msg187121 - (view) Author: Max Cantor (Max.Cantor) Date: 2013-04-16 20:22
On certain Linux distributions such as Ubuntu, the linker is invoked by default with --as-needed, which has an undesireable side effect when linking static libraries: it is bad at detecting required symbols, and the order of libraries on the command line become significant.

Right now, on my Ubuntu 12.10 system with a custom 32-bit version of Python, I get the following command output:

mcantor@hpmongo:~$ /opt/pym32/bin/python-config --ldflags
-L/opt/pym32/lib/python2.7/config -lpthread -ldl -lutil -lm -lpython2.7 -Xlinker -export-dynamic

When linking a project with those flags, I get the following error:

/usr/bin/ld: /opt/pym32/lib/python2.7/config/libpython2.7.a(dynload_shlib.o): undefined reference to symbol 'dlopen@@GLIBC_2.1'
/usr/bin/ld: note: 'dlopen@@GLIBC_2.1' is defined in DSO /usr/lib/gcc/x86_64-linux-gnu/4.7/../../../i386-linux-gnu/libdl.so so try adding it to the linker command line
/usr/lib/gcc/x86_64-linux-gnu/4.7/../../../i386-linux-gnu/libdl.so: could not read symbols: Invalid operation
collect2: error: ld returned 1 exit status

To resolve the error, I moved -ldl and -lutil *AFTER* -lpython2.7, so the relevant chunk of my gcc command line looked like this:

-L/opt/pym32/lib/python2.7/config -lpthread -lm -lpython2.7 -ldl -lutil -Xlinker -export-dynamic

I have no idea why --as-needed has such an unpleasant side effect when static libraries are being used, and it's arguable from my perspective that this behavior is the real bug. However it's equally likely that there's a good reason for that behavior, like it causes a slowdown during leap-years on Apple IIs or something. So here I am. python-config ought to respect the quirks of --as-needed when outputting its ldflags.
msg224655 - (view) Author: Mark Lawrence (BreamoreBoy) * Date: 2014-08-03 20:31
@Max sorry about the delay in giving you a response.  Can somebody please pick this up, I can't find on the experts list who to put on the nosy list for build issues.
History
Date User Action Args
2022-04-11 14:57:44adminsetgithub: 61969
2019-03-15 22:09:56BreamoreBoysetnosy: - BreamoreBoy
2015-04-13 14:04:54zach.waresetnosy: + zach.ware
2014-08-03 20:31:50BreamoreBoysetnosy: + BreamoreBoy
messages: + msg224655
2013-04-16 20:22:14Max.Cantorcreate