I cannot understand why this throws undefined reference to `floor'":

double curr_time = (double)time(NULL);
return floor(curr_time);

Hasn't it been casted to double, which is what floor receives?

link|improve this question

3  
Did you #include <math.h> ? – Mimisbrunnr Mar 15 '10 at 18:02
3  
Did you link against the math library (e.g., -lm for gcc)? "Undefined reference" errors usually indicate that the linker can't find the object code for something. – John Bode Mar 15 '10 at 18:03
3  
Undefined reference errors come from the linker, the missing header would should be a compile time error. – dirkgently Mar 15 '10 at 18:04
feedback

3 Answers

up vote 7 down vote accepted

You possibly have run in to the infamous -lm problem: Compile as:

gcc yourfile.c -o out -lm 

This is C FAQ 14.3 item as well.

link|improve this answer
1  
Library linking flags should go after sources and object files, btw. – wRAR Mar 15 '10 at 18:04
feedback

Maybe because you don't link with the math library? The error has nothing to do with casts and data types, btw.

link|improve this answer
What I do not understand is why, without linking with the math library either, things like floor(1.2) do worked. That is why I thought the error was related to the data type. – plok Mar 15 '10 at 20:31
@plok: Maybe it worked, because you were on a different system? Sometimes, the library is linked by default. – Lucas Mar 15 '10 at 20:54
@Lucas: it was on the same system, without modifying anything. I just tried with a simpler statement when the error was thrown and saw that floor(1.2) worked. Is it possible that the result is being calculated by gcc at compile time? – plok Mar 15 '10 at 21:00
@plok: Yes. GCC will evaluate floor(1.2) at compile time. – Stephen Canon Mar 16 '10 at 15:27
feedback

You probably have to link explicitly to the library. On an UNIX-like system this would typically be "/usr/lib/libm.a". The C standard library should be linked by default, but the math library is, depending on your system, not linked and you may have to link explicitly. (e.g. on Mac OS X it is also linked by default on my ubuntu system it is not).

Note that this has nothing to do with your include path. If you are on something UNIX-like you will probably find the header with the prototype declaration under "/usr/include/math.h", where your compiler will always look for headers.

If you are using gcc, you can either link directly with:

gcc yourfile.c /usr/lib/libm.a -o out

or with "-l*nameroflibrary*" like this:

gcc yourfile.c -lm -o out

this will look for a library in the same directory as the C standard library with the name "lib*nameoflibrary*.a"

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.