I try to link my c++ application against the "Eigen 2.0.15" library. Some details:

  • My compiler is: gcc version 4.0.1 (Apple Inc. build 5493)
  • My OS is: mac os 10.5
  • I compile the code with g++ -I/opt/local/include -I/opt/local/include/eigen2 -O2 -g ...

    Building target: LBRALL Invoking: MacOS X C++ Linker g++ -L/opt/local/lib -o "LBRALL" [... *.o -files ] -lcv -lEigen2 -lcxcore -lhighgui

The error is:

`Undefined symbols:
"Eigen::MatrixBase<Eigen::Block<Eigen::Matrix<float, 4, 4, 2, 4, 4>, 3, 3, 1, 32>    >::inverse() const", referenced from:
  Eigen::Transform<float, 3>::inverse(Eigen::TransformTraits) constin LBRSendStateCart.o
  Eigen::Transform<float, 3>::inverse(Eigen::TransformTraits) constin LBRCam.o
"Eigen::MatrixBase<Eigen::Matrix<float, 4, 4, 2, 4, 4> >::inverse() const", referenced from:
  Eigen::Transform<float, 3>::inverse(Eigen::TransformTraits) constin LBRSendStateCart.o
  Eigen::Transform<float, 3>::inverse(Eigen::TransformTraits) constin LBRCam.o
ld: symbol(s) not found
collect2: ld returned 1 exit status
make: *** [LBRALL] Error 1`

Does anybody have an idea why the linker fails?

link|improve this question

60% accept rate
1  
According to eigen.tuxfamily.org/index.php?title=Main_Page , "There is no library to link to ... Eigen is a pure template library defined in the headers." – Jason Orendorff Dec 10 '10 at 15:30
Yes, i have read this to. But there a symbols missing. – nutario Dec 11 '10 at 10:56
feedback

1 Answer

up vote 1 down vote accepted

Looking at the error messages, my guess you didn't instantiate Matrix, Transform and possibly other templates. That happened probably because the header files didn't contain implementation of those templates, or maybe there is a conditional compilation that is supposed to pull up implementation for them.

link|improve this answer
The symbols can not be found, because the MatrixBase::inversemethode is definded in the Eigen::LU class. includeing <Eigen/LU> fixes the problem. – nutario Dec 30 '10 at 8:59
feedback

Your Answer

 
or
required, but never shown

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