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.