I am currently using gcc to compile and I need to use <math.h>.
Problem is that it won't recognize the library.
I have also tried -lm and nothing.
The function I tried to use was ceil() and I get the following error:
: undefined reference to `ceil'
collect2: ld returned 1 exit status
I am using the latest Ubuntu and math.h is there.
I tried to use -lm in a different computer and it work perfectly.
Does anyone know how to solve this problem?
I did include <math.h>. Also, the command I used was:
gcc -lm -o fb file.c
#include <math.h>before you useceil? – David Schwartz Nov 25 '11 at 8:09-lmafter the source file name? – Keith Thompson Nov 25 '11 at 8:14