QQ登录

只需一步,快速开始

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 844|回复: 3

C编译器找不到STL库,怎么回事?

[复制链接]
发表于 2005-1-14 21:31:21 | 显示全部楼层 |阅读模式
写了一个程序文件 firstc.c
[code:1]
# include <math.h>
main(){
  int m=4;
  int k=0;
  k=sqrt(m);
  printf("%d",k);
}[/code:1]

用以下指令编译
gcc firstc.c

得到的反馈是
[code:1]
/tmp/cc6xoFNA.o(.text+0x31): In function `main':
: undefined reference to `sqrt'
collect2: ld returned 1 exit status[/code:1]

我用的系统是公社出的magic linux 1.2 RC1
发表于 2005-1-14 22:09:19 | 显示全部楼层
stl 是给c++的吧?
(纯属个人猜测哦)
回复

使用道具 举报

发表于 2005-1-14 22:32:19 | 显示全部楼层
gcc first.c -lm
回复

使用道具 举报

 楼主| 发表于 2005-1-14 22:37:31 | 显示全部楼层

谢谢,这一次对了!!!

[quote:d5ba0cd8e9="delete"]gcc first.c -lm[/quote]
谢谢,这一次对了!!!
太谢谢了!我才开始学习c,谢谢
回复

使用道具 举报

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

本版积分规则

GMT+8, 2024-11-6 19:32 , Processed in 0.039815 second(s), 16 queries .

© 2021 Powered by Discuz! X3.5.

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