|
:help
在Redhat 9.0使用C编程时出现很奇怪的错误, 不能够调用数学函数, 所有的数学函数都不能用,例如:
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
int main(void)
{
printf("%f",atan(100));
}
使用gcc编译时出现如下问题:
/tmp/ccPnndKq.o(.text+0x19): In function `main':
: undefined reference to `atan'
collect2: ld returned 1 exit status
请求某位大侠帮帮我!!!!!!!!!!! |
|