Possible Duplicate:
Why Am I Getting Link Errors When Calling Function in Math.h?

Hello, I have a problem in C (gcc), when I compile a program that includes Math.h and uses functions from there, it says "undefined reference to...". it happens for sqrt, log, but for others not (for instance pow). How can I fix this library or reinstall it ? thanks in advance. [I am using Ubuntu]

link|improve this question
feedback

closed as exact duplicate by Jefromi, Pascal Cuoq, Jens Gustedt, Matthew Flaschen, Brad Larson Nov 29 '10 at 15:47

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

1 Answer

You shold link with -lm option: gcc -o test test.c -lm lm means link math.

link|improve this answer
actually -lname means link to library name. m is the math library. – lijie Nov 29 '10 at 6:58
thanks !!! that was missing – shkk Nov 29 '10 at 7:05
2  
actually -lname means to link against a library named libname.so or libname.a in that order – SiegeX Nov 29 '10 at 7:05
feedback

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