I have a problem with the linker when I build my current project.
The error it comes up with is as follows:
libmiinddynamic.so: undefined reference to `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&)'
This is slightly strange, as as far as I'm aware this method is declared in a file that is definitely being compiled:
namespace SparseImplementationLib {
template <ActivityType,WeightType,ptr_type =
DefaultPtr<ActivityType,WeightType> > class AbstractSparseNode;
// A whole bunch of other methods
//! All derived classes from AbstractSparseNode can use operator<<
template <class ActivityType, class WeightType, class ptr_type>
ostream& operator<<
(
ostream& s,
const AbstractSparseNode<ActivityType,WeightType>& node)
{
node.ToStream(s);
return s;
}
}
Does anyone know why this error might pop up?
N.B. This is compiled using MPICXX on Fedora, and I'm using CCMAKE.
Cheers, Ed
EDIT Ok, using nm I've found the following :
std::ostream& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::ostream&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)
when it wants this instead:
std::basic_ostream >& SparseImplementationLib::operator<< <double, double, SparseImplementationLib::DefaultPtr<double, double> >(std::basic_ostream >&, SparseImplementationLib::AbstractSparseNode<double, double, SparseImplementationLib::DefaultPtr<double, double> > const&)
Unfortunately, I have no idea how to fix this, cus operator<< only takes 2 arguments.
Anyone get a clue?
(The random \s before all the _s is to try and escape them, stackoverflow is being a little temperamental today and won't do it (otherwise we get lovely italics randomly in my code))
