ChinaUnix.net
相关文章推荐:

collect2 ld 以信号 11 段错误 core dumped 退出。

各位高手请看这是什么原因造成的: 我在编译的时候出现如错误collect2: ld terminated with signal 11 [Segmentation fault], core dumped 。 这个程序我在其他两台机器上都可以编译通过,运行也很好。但到第三台就出现这个错误

by stonestar - Linux论坛 - 2004-10-15 14:48:42 阅读(1055) 回复(0)

相关讨论

configure没有问题, make中有如下2个warning: warning: assignment makes pointer from integer without a cast mibgroup/agentx/agentx_config.c:88: warning: assignment makes pointer from integer without a cast 最后提示 etsnmphelpers.la ../snmplib/libnetsnmp.la -lcrypto -lelf -lm -lnm -lnm libtool: link: warning: this platform does not like uninstalled shared libraries libtool: link: `snmpd' will be ...

by geyun616 - HP-UX - 2006-09-05 22:51:54 阅读(2289) 回复(7)

[code]/usr/lib/gcc/x86_64-redhat-linux/3.4.3/../../../../lib64/crt1.o(.text+0x21): In function `_start': : undefined reference to `main' collect2: ld returned 1 exit status make[1]: *** [dso_vpd.so] Error 1 [/code] 是什么原因导致的,想从32bit改成64bit的机子上用,结果就出现这样的问题了, 只作了简单的"-m32"to"-m64".

by lonelyair - C/C++ - 2013-12-05 14:48:17 阅读(45144) 回复(11)

编译的方法是,执行configure,然后,执行make 但是编译后遇见了 ld: 0711-317 ERROR: Undefined symbol: .rpl_malloc ld: 0711-345 Use the -bloadmap or -bnoquiet option to obtain more information. collect2: ld returned 8 exit status 很是郁闷啊

by vivianhot - C/C++ - 2005-05-26 00:53:38 阅读(598) 回复(0)

我从http://otn.oracle.com 上下载了ORACLE9I_SPARC的版本,是*.cpio.gz的格式,但我用gunzip -d *.gz 解压第一个文件时报上述错误,不知是何原因。 谁能指点一下吗,谢谢。

by cchmail - Solaris - 2003-05-20 14:18:02 阅读(683) 回复(2)

我从http://otn.oracle.com 上下载了ORACLE9I_SPARC的版本,是*.cpio.gz的格式,但我用gunzip *.gz 解压第一个文件时报上述错误,不知是何原因。 谁能指点一下吗,谢谢。

by cchmail - Oracle - 2003-05-20 09:20:52 阅读(827) 回复(2)

/*******服务器程序 TCPServer.c ************/ #include #include #include #include #include #include #include #include #define WAITBUF 1 int main() { int sockfd,new_fd; struct sockaddr_in server_addr; struct sockaddr_in client_addr; int sin_size,portnumber; char hello[]="Socket communication world!...

by foolfoolbird - C/C++ - 2006-08-14 11:17:35 阅读(752) 回复(2)

我在AIX5.2上用g++编译C++文件时,出现下面的错误collect2: library libm not found 有谁知道这个错误怎么解决,谢谢。

by 龚申行 - C/C++ - 2006-01-20 16:24:45 阅读(1564) 回复(2)

#include #define def_host_name NULL #define def_user_name NULL #define def_password NULL #define def_db_name NULL MYSQL *conn; int main(int argc,char **argv) { mysql_init(conn); mysql_real_connect(conn,def_host_name,def_user_name,def_password, def_db_name,0,NULL,0); printf(mysql_get_server_info(conn)); mysql_close(conn); exit(0); } ...

by gettyying - MySQL - 2007-03-20 20:18:34 阅读(1509) 回复(1)

关于Floating point error:Domain. 程序内容: #include #include #define PI 3.1415926 double y(double); double cos(double); double table(double(*f)(),double,double,double); int main(int argc,char ** argv) { printf ("Table of y(x)=2*x*x-x+1\n\n" ); table(y,0.0,2.0,0.5); printf ("\nTable of cos(x)\n\n" ); table(cos,0.0,PI,0.5); return 0; } do...

by hb12112 - C/C++ - 2007-08-17 23:55:07 阅读(4796) 回复(12)

系统有如下错误日志: pid 505 (httpd), uid 0: exited on signal 11 (core dumped) pid 97895 (httpd), uid 0: exited on signal 11 (core dumped) pid 97925 (httpd), uid 0: exited on signal 11 (core dumped) pid 98008 (httpd), uid 0: exited on signal 11 (core dumped) pid 98504 (httpd), uid 0: exited on signal 6 (core dumped) pid 98330 (httpd), uid 0: exited on signal 11 (core dumped) pid 98519 (httpd), uid...

by 落伍者 - 服务器应用 - 2008-09-18 21:56:55 阅读(1974) 回复(2)