> On 24/04/2017, at 11:54, [email protected] wrote: > > > > On Sunday, April 23, 2017 at 6:32:30 PM UTC-5, François wrote: > Library ordering problem. What version of linux are we talking about? And in > particular what linker. > > > On 24/04/2017, at 11:29, [email protected] wrote: > > > > This branch failed for me on linux at lcalc with what looks like linking > > errors. I reverted https://trac.sagemath.org/ticket/22840 and then I was > > able to build lcalc. Log file of the failed lcalc attached. > > > gcc version 5.4.0 20160609 (Ubuntu 5.4.0-6ubuntu1~16.04.4) > > Is the information you're looking for, correct? >
Mostly. The problem you are experiencing is because the libraries to link have put ahead of the objects using them. Which means linking order is important. Usually that happen with certain version or configuration of the linker ld. In particular order is important if “—as-needed” is the default behaviour of the linker and possibly if the gold linker is used. I note that the ticket must have passed the bots so I would say your linker is not in the usual default. François -- You received this message because you are subscribed to the Google Groups "sage-release" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To post to this group, send email to [email protected]. Visit this group at https://groups.google.com/group/sage-release. For more options, visit https://groups.google.com/d/optout.
