undefined reference for sin, cos etc.

OP #1863096
Rate this post
useful
not useful
Hi all !

I'm getting "undefined reference to sin" for a simple program:
1
#include <stdio.h>
2
#include <stdlib.h>
3
#include <math.h>
4
int main ()
5
{
6
double a = 40.5;
7
double b = sin (a);
8
//printf("%f",b);
9
return 0;
10
}

The compiler is : arm-linux-gnueabi-gcc

Thanks in advance.
Guest #1917114
Rate this post
useful
not useful
hello !
I have the same problem, but I have just started to program with C and I 
have not undestood your answer, insert -lm...

what I must do to compilate good my program ?

sorry for my bad english !!!

thank you

Reply

Please log in before posting.

or

Log in with Google account

Registration is free and takes only a minute.

Register now