This is the mail archive of the
gcc@gcc.gnu.org
mailing list for the GCC project.
Error: undefined reference to cos
- From: Jnanesh <jnanesh at vsnl dot net>
- To: gcc at gnu dot org
- Date: Sat, 05 Apr 2003 06:30:56 +0530
- Subject: Error: undefined reference to cos
I am using gcc 3.2 on Red Hat Linux 8.0
When I compiled the C program given below using the command: cc test.c
#include <stdio.h>
#include <math.h>
#define pi 3.1415
int main()
{
double a;
a=sin(pi/2);
printf("a = %lf",a);
return(0);
}
It gives errors as given below
In function `main':
/tmp/ccBFnFNj.o(.text+0x1e): undefined reference to `sin'
collect2: ld returned 1 exit status
Please help me out to see through this problem