gcc 引用math.h头文件,编译出现undefined reference to `pow‘等错误时,需要加参数-lm....

在自己编写的函数中调用数学函数时,如下例子:

#include
#include
void p(void)
{
    printf("%g\n", pow(2, 3));
}
        
int main()
{
    p();
    return 0;
}

出现编译问题:

undefined reference to `pow'

解决方法:

gcc pow.c -lm

问题:

为什么在函数中调用math.h头文件需要加 -lm参数,而在main中调用却不需要? 

转载于:https://www.cnblogs.com/youngkingwang/archive/2013/03/21/2972917.html

你可能感兴趣的:(gcc 引用math.h头文件,编译出现undefined reference to `pow‘等错误时,需要加参数-lm....)