|
发表于 2003-2-24 11:35:23
|
显示全部楼层
Re: 各位高手,请帮忙看看,不要让我对linux失去信心:
[quote:861bbb5447="lzh08_gongshe"]help me!!!!!!!!!!!!!!
/***************************************************************************
main.c - description
-------------------
begin : Ò» 2ÔÂ 23 19:35:30 CST 1998
copyright : (C) 1998 by
email :
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of the GNU General Public License as published by *
* the Free Software Foundation; either version 2 of the License, or *
* (at your option) any later version. *
* *
***************************************************************************/
#include <stdio.h>
#include <stdlib.h>
int main(int argc, char *argv[])
{
printf("Hello, world!\n");
return EXIT_SUCCESS;
}
compiler ok;
link:
gmake: *** Warning: File `admin/acinclude.m4.in' has modification time in the future (2002-08-06 05:39:32 > 1998-02-23 19:46:02)
configure.in:58: warning: do not use m4_patsubst: use patsubst or m4_bpatsubst
configure.in:100: warning: do not use m4_regexp: use regexp or m4_bregexp
这两条警告什么意思?
系统环境:kdevelop 2.1 ,redhat8.0
现象:这么一个简单的程序,编译很快,但是link的时候,超过4分钟还没有完成,只好终止,为什么?[/quote]
这是因为kdevelop自带的工程模板和你的系统有一些版本上的细微差别,
这个警告在任何人那里都有,
至于link的问题,跟这个没有任何关系。
应该说,这个程序link 4分钟,基本是不可能的。 |
|