some strange error appeared after I upgraded my Ubuntu from (10.11, 11.04 i dont know) to 11.10

i get an undefined reference to 'sqrt' while using math.h and linking with -lm

I'm compiling with gcc -Wall -Werror -g -Iinclude/ -lm lib/matrix.c src/analyse.c -o bin/analyse.o

both source-files use and include math.h

this code compiled without problems for and I didn't change much since the upgrade but now it won't work

do you have any suggestions what I can do, to find the error?

I'm sorry, if this question was asked before; there are so many posts on math linker errors and I didn't find a matching one

link|improve this question

71% accept rate
4  
Place -lm after your C files on the command line – user786653 Oct 19 '11 at 16:11
ouch that's a very dumb failure; thank you very much – Hachi Oct 19 '11 at 16:14
@user786653: That should be an answer. – Keith Thompson Oct 19 '11 at 16:23
I do have the same problem in Ubuntu 11.10. I didn't have any problem before upgrading. In my case the problem comes from following command, Do you have any comments for me? gcc -Wall -Wno-unused -MD -o mems_seektest mems_seektest.o -lm -L. -g -DASSERTS -I../src// -I../ -I../src//src -DDEBUG -lmems_internals – ARH Nov 8 '11 at 23:24
feedback

3 Answers

up vote 9 down vote accepted

The library that you are using needs to be placed after the files that use it when you are using it from the command line. So place -lm on after your C files on the command line.

Reference

link|improve this answer
This is not accurate. Normally, the order does not matter when the library is shared. The problem only appears when --as-needed is either specified, or set as default. – Vladimir Prus Nov 16 '11 at 7:59
@VladimirPrus: You are both right :-). Recent Ubuntu versions (since 11.04/Natty Narwhal) set --as-needed as default. See wiki.ubuntu.com/NattyNarwhal/ToolchainTransition – sleske May 17 at 13:48
feedback

SOLVED, this is not the common missing -lm problem! I'm in the same situation after upgrade to (k)ubuntu 11.10!

$ whereis math.h
math: /usr/include/math.h

Makefile:
CC=gcc
CFLAGS=--std=c99 -g -pedantic -Wall -lm

uname:
Linux idefix 3.0.0-12-generic #20-Ubuntu SMP Fri Oct 7 14:56:25 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux

You really HAVE TO place the -lm swith after -o foo foo.c parameter

Output:
pidi@idefix:~/projekt1$ make
gcc -o b1 b1.c --std=c99 -g -pedantic -Wall -lm
pidi@idefix:~/projekt1$

So swap your flags in Makefile! GUYS. This is pretty new (and serious) BUG!

link|improve this answer
2  
If this is the solution, you should mark it as accepted! – Chadwick Nov 9 '11 at 16:19
feedback

This is a problem due to the default activation of the gcc flag --as-needed in the linker

More information here: http://www.gentoo.org/proj/en/qa/asneeded.xml

Simple fix (worked for me at least):

Add -Wl,--no-as-needed to the linker

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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