#include <stdio.h>
#include <math.h>
int main()
{
double x = 3.1415926 / 2;
double tmp = sin(x);
printf("result = %g\n", tmp);
double a = 2, b = 1;
tmp = pow(a, b);
printf("result = %g\n", tmp);
}
编了一个如上的小程序怎么编译都会报出如下的错误
a.c:(.text+0x1a): undefined reference to `sin'
a.c:(.text+0x5b): undefined reference to `pow'
collect2: ld returned 1 exit status
后来发现应该在gcc编译时加上 -lm 参数
gcc -lm a.c
再运行程序输出正确结果如下:
result = 1
result = 2
本文介绍了一个使用GCC编译器的小程序案例,在程序中调用了数学函数sin()和pow()时遇到未定义引用的错误。通过添加-lm参数解决了链接阶段的问题,并成功输出了正弦值和幂运算的结果。
1万+

被折叠的 条评论
为什么被折叠?



