in reply to cpan install error for XML::LibXML::Node

It is referring to the standard C math library. I doubt this is what is actually causing the issue, but you can verify this specifically if what Corion said doesn't lead you to the root problem.

Create a basic C file:

// test.c #include <math.h> int main (){ return 0; }

Then compile it:

gcc test.c -lm

If you don't get errors (which I highly expect you won't), the problem is due to finding the libxml libraries and you'll have to focus there.

Replies are listed 'Best First'.
Re^2: cpan install error for XML::LibXML::Node
by BradV (Sexton) on May 31, 2017 at 12:36 UTC

    yes, the compile worked without complaint. I see the math header under /usr/include as part of the glibc-headers rpm. Thanks! Will take a shot at the 'look' method.