vote up 0 vote down star

Ok, I'm having issues with the linker on my current project (This is a continuation of another question, ish)

Basically, the linker gives an undefined reference in dynamiclib.so for:

std::basic_ostream<char, std::char_traits<char> >& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::basic_ostream<char, std::char_traits<char> >&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)

And I can only find:

std::ostream& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::ostream&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)
within the file.

Thing is, they're the same methods, really (basic_ostream and ostream are interchangable?)

If I add the first method in manually to the namespace it moans about it being already defined at compile time.

Does anyone know what on earth might be going on here?

Cheers, Ed

NB this is with MPICXX and CCMAKE

flag

4 Answers

vote up 1 vote down

See this SO question Compiler not creating templated ostream << operator

link|flag
Yeah, it's friend <>'d and the declaration and actual code are both in the same file as it's an abstract class. Still doesn't link. . . – Ed Woodcock Mar 12 at 19:48
well, ostream should be defined as basic_ostream<char>...but I'd guess the "usage" (needed call) are with a cout, perhaps? cout should be defined as an ostream...MPICXX has it different? Are the you including iostream? – epatel Mar 12 at 20:00
Yeah, I'm using IOstream, and basic_ostream is the same thing as ostream, I've tried overriding the method so it uses the basic one and it moans that it's already in there! – Ed Woodcock Mar 13 at 11:09
vote up 0 vote down

It sounds like you're not linking dynamiclib.so to the SparseImplementationLib correctly. Do you have a linker flag similar to -lSparseImplementationLib in your makefile?

link|flag
SparseImplementationLib is another library that is compiled from code files, it's in another directory and called libmiindsparseimplementation.so, and afaik it's linking in fine. Cus this is CCMAKE I can't really mess with the make file, it goes insane if you do. – Ed Woodcock Mar 12 at 18:57
vote up 0 vote down

I had (almost) the same issue with a gStreamer like engine I'm working on - a function called from a .so file did not exist in the main code.

I found that the function was being removed by the linker as it was not being called by any internal functions.

At the moment, I've worked around the problem by forcing the function to be included by the linker via a function call/constructor, within a function that is conditionally never called:-

bool callme = false;

if(callme == true)
{
    dummyfunction();
}

I found that this forced the linker to include, but the code itself was never run.

If anyone has a solution that either stops the linker being so intelligent, or there is a 'correct' method to use, I'd like to hear about it!

link|flag
vote up 0 vote down check

Ok, I managed to fix this this morning after about 10 hours hacking away last night.

Turns out that it compiles if you make the definitions of the function inline, and make sure it has options for the function with both all the template arguments and just non-defaulted arguments!

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.