QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 898|回复: 2

有关linux下的数学库函数引用问题

[复制链接]
发表于 2003-9-27 22:59:19 | 显示全部楼层 |阅读模式
本人刚刚开始用linux里面的gcc编译c语言程序就遇到了不能引用库函数的问题:
测试程序如下:
#include<stdio.h>
#include<math.h>
main()
{ float a;
  a=sin(10);
  printf("the result is %.4f",a);
}
[hexing@localhost cprogram]$gcc -o test test.c
/tmp/ccIZ32b0.o:In function `main':
/tmp/ccIZ32b0.o(text+0xae):undefined reference to `sin'
collect2:ld returned 1 exit status
[hexing@localhost cprogram]$

能请教一下怎么解决吗?
先谢过了!!
发表于 2003-9-29 09:41:51 | 显示全部楼层
-lmath
回复

使用道具 举报

发表于 2003-9-29 09:56:01 | 显示全部楼层
-lm,-lmath不行吧
gcc -lm -Wall ***.c
回复

使用道具 举报

您需要登录后才可以回帖 登录 | 注册

本版积分规则

GMT+8, 2024-11-14 11:10 , Processed in 0.054180 second(s), 15 queries .

© 2021 Powered by Discuz! X3.5.

快速回复 返回顶部 返回列表