当前位置:  技术问答>linux和unix

math.h 中的函数怎么不能用?

    来源: 互联网  发布时间:2015-03-10

    本文导语:  在这个程序中: #include  #include  int main(void) {  double x=10.1;  pow(x,x); } make temp 系统提示: /tmp/ccOJpCZ8.o(.text+0x1b): in function 'main' undefined reference to 'pow' collect2 Id retured exit Status make ***(2) Error 1 而且象 sin()...

在这个程序中:

#include 
#include 

int main(void)
{
 double x=10.1;
 pow(x,x);

}

make temp

系统提示:
/tmp/ccOJpCZ8.o(.text+0x1b): in function 'main'
undefined reference to 'pow'
collect2 Id retured exit Status
make ***(2) Error 1

而且象 sin(),cos()等函数使用时都是这样提示;
请问这是怎么回事?

|
你要指明要连接库 libm.so 或 libm.a 该库包含math.h 中声明的所有函数
在连接选项上增加 -lm 

|
包含在math.h中的函数在编译时要在gcc的命令行中要在最后加-lm

|
gcc test.c -o test -lm

|
ld会将 -l 解释为连接lib.a 或 lib.so
所以,-lm 就是 连接libm.a或libm.so

|
up

    
 
 
 
本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • java命名空间java.lang类character的类成员方法: math_symbol定义及介绍
  • 基于java math API 的详细解释说明
  • java命名空间java.math类bigdecimal的类成员方法: divideandremainder定义及介绍
  • math.h?
  • java命名空间java.lang类math的类成员方法: ceil定义及介绍
  • Math类的问题
  • java命名空间java.math类bigdecimal的类成员方法: ten定义及介绍
  • JAVA中Math类的小问题。
  • java命名空间java.math类bigdecimal的类成员方法: zero定义及介绍
  • math函数的问题 iis7站长之家
  • java命名空间java.math类bigdecimal的类成员方法: one定义及介绍
  • configure: error: Standard C math library -lm not found
  • java命名空间java.math类biginteger的类成员方法: zero定义及介绍
  • 怎样将 math.random()转换为 整型(int)
  • java命名空间java.math类biginteger的类成员方法: one定义及介绍
  • 关于math.h调用的问题.
  • java命名空间java.math类biginteger的类成员方法: negate定义及介绍
  • JavaScript数学计算库 Math.js
  • java命名空间java.math枚举roundingmode的类成员方法: down定义及介绍
  • math库的问题
  • java命名空间java.math类biginteger的类成员方法: signum定义及介绍
  • linux下的math.h到底怎么回事啊


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3