免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
12下一页
最近访问板块 发新帖
查看: 3337 | 回复: 16
打印 上一主题 下一主题

为什么用g++不能编译? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2004-08-05 08:41 |只看该作者 |倒序浏览
原程序test.C如下:

#include<iostream.h>;
void main()
{
  cout<<"hello!";
}



编译结果如下:

[root@localhost dcl]# g++ -o test test.C
In file included from /usr/include/c++/3.2.2/backward/iostream.h:31,
                 from test.C:1:
/usr/include/c++/3.2.2/backward/backward_warning.h:32:2: warning: #warning This
file includes at least one deprecated or antiquated header. Please consider using one of the 32 headers found in section 17.4.1.2 of the C++ standard. Examples
include substituting the <X>; header for the <X.h>; header for C++ includes, or <sstream>; instead of the deprecated header <strstream.h>;. To disable this warning
use -Wno-deprecated.
test.C:3: `main' must return `int'

请问各位大虾,这是怎么回事?我用的是red hat liunx 9.0

论坛徽章:
0
2 [报告]
发表于 2004-08-05 08:54 |只看该作者

为什么用g++不能编译?

应该加个命名空间吧?另外,这个系统的main()函数必须返回int,windows下的main()可以返回void,但是unix/linux下可能要求返回int。

论坛徽章:
0
3 [报告]
发表于 2004-08-05 08:54 |只看该作者

为什么用g++不能编译?

试试这个
#include<iostream>;

int
main()
{
        cout<<"hello!";
        return 1;
}

论坛徽章:
0
4 [报告]
发表于 2004-08-05 09:03 |只看该作者

为什么用g++不能编译?

楼主的程序是在C++标准出现之前的写法。这种写法在一些较低版本的编译器上得到支持,新版编译器可能已经不再支持非标准的C++程序。现在你应该这么写:

  1. //#include<iostream.h>; // 非标准C++头文件
  2. #include <iostream>; // 标准C++头文件,没有 .h 后缀
  3. //void main() // 非标准main() 函数
  4. int main()
  5. {
  6. //    cout<<"hello!"; // 注意 namespace 的问题
  7.     std::cout << "hello!";

  8.     return 0; // C++标准规定也可以没有这一句。如果没有,编译器会自动加上。
  9. }
复制代码

论坛徽章:
208
巨蟹座
日期:2013-09-02 09:16:36卯兔
日期:2013-09-02 20:53:59酉鸡
日期:2013-09-05 21:21:45戌狗
日期:2013-10-15 20:51:17寅虎
日期:2013-10-18 21:13:16白羊座
日期:2013-10-23 21:15:19午马
日期:2013-10-25 21:22:48技术图书徽章
日期:2013-11-01 09:11:32双鱼座
日期:2013-11-01 20:29:44丑牛
日期:2013-11-01 20:40:00卯兔
日期:2013-11-11 09:21:32酉鸡
日期:2013-12-04 19:56:39
5 [报告]
发表于 2004-08-05 09:22 |只看该作者

为什么用g++不能编译?

#include <iostream>;
using namespace std;
...

论坛徽章:
0
6 [报告]
发表于 2004-08-05 09:33 |只看该作者

为什么用g++不能编译?

我照whyglinux写的修改了程序,编译后结果如下:


[root@localhost dcl]# g++ -o test test.C
/usr/bin/ld: error while loading shared libraries: libbfd-2.13.90.0.18.so: cannot open shared object file: No such file or directory
collect2: ld returned 127 exit status


这又是怎么回事?

论坛徽章:
0
7 [报告]
发表于 2004-08-05 10:39 |只看该作者

为什么用g++不能编译?

搜索坛子中
LD_LIBRARY_PATH即可找到答案。

论坛徽章:
0
8 [报告]
发表于 2004-08-05 10:54 |只看该作者

为什么用g++不能编译?

"搜索坛子中
LD_LIBRARY_PATH即可找到答案。"什么意思?linux,c++我都是才学.

论坛徽章:
0
9 [报告]
发表于 2004-08-05 11:02 |只看该作者

为什么用g++不能编译?

按关键字“LD_LIBRARY_PATH”在本论坛中搜索相关帖子。

论坛徽章:
0
10 [报告]
发表于 2004-08-05 14:58 |只看该作者

为什么用g++不能编译?

看了关于'LD_LIBRAY_PATH'的帖子,在 /etc/ld.so.config里添加了以下两句:

/usr/local/freetds/lib
/usr/lib

保存退出后,运行了/sbin下的ldconfig,可是编译还是通不过,依然报同样的错误,怎么解决?
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP