当前位置:  技术问答>linux和unix

使用ld链接器出现cannot find entry symbol __start问题

    来源: 互联网  发布时间:2016-10-06

    本文导语:  我在使用链接器时发生错如下,不知道怎么解决,期待高手指教! ./ld -s -o exe ji4.o gebp.o main.o ./ld: warning: cannot find entry symbol __start; defaulting to 00000000100000c0 main.o: In function `main': main1.c:(.text+0x34): undefined re...

我在使用链接器时发生错如下,不知道怎么解决,期待高手指教!
./ld -s -o exe ji4.o gebp.o main.o
./ld: warning: cannot find entry symbol __start; defaulting to 00000000100000c0
main.o: In function `main':
main1.c:(.text+0x34): undefined reference to `atoi'
main1.c:(.text+0x54): undefined reference to `atoi'
main1.c:(.text+0x74): undefined reference to `atoi'
main1.c:(.text+0x94): undefined reference to `atoi'
main1.c:(.text+0xbc): undefined reference to `atoi'
main.o:main1.c:(.text+0xe4): more undefined references to `atoi' follow
main.o: In function `set_Matrix':
main1.c:(.text+0x1c8): undefined reference to `rand'
main.o: In function `test_Goto':
main1.c:(.text+0x2e8): undefined reference to `malloc'
main1.c:(.text+0x304): undefined reference to `malloc'
main1.c:(.text+0x320): undefined reference to `malloc'
main1.c:(.text+0x35c): undefined reference to `puts'
main1.c:(.text+0x36c): undefined reference to `exit'
main1.c:(.text+0x37c): undefined reference to `time'
main1.c:(.text+0x38c): undefined reference to `srand'
main1.c:(.text+0x448): undefined reference to `gettimeofday'
main1.c:(.text+0x4a8): undefined reference to `gettimeofday'
main1.c:(.text+0x544): undefined reference to `printf'
main1.c:(.text+0x554): undefined reference to `free'
main1.c:(.text+0x564): undefined reference to `free'
main1.c:(.text+0x574): undefined reference to `free'
main.o: In function `comp_DGEMM':
main1.c:(.text+0xf44): undefined reference to `gettimeofday'
main1.c:(.text+0xfa4): undefined reference to `gettimeofday'
main1.c:(.text+0x1080): undefined reference to `printf'

|
./ld -s -o exe ji4.o gebp.o main.o -lc
这样可以通过链接,但是运行会出错。
-lc的意思是把libc.a链接进去,那些atoi、malloc之类的函数都在这个库里

|
这几个函数是C语言基础库里的,也就是libc.so里的.
没有__start是因为c程序以main为主函数,汇编以start为主函数入口


你改用gcc连接就行了,
gcc -o exe ji4.o gebp.o main.o
这样就行了.


如果你非用ld,自己把libc.so连接上吧.


|
main.o ?
main1.c ?
main1.c中缺少一些头文件,添加试试
#include 
#include 
#include 
#include 

    
 
 

您可能感兴趣的文章:

  • 几台机器做lvs,使用100M 网线连接,文件系统使用NFS共享,读写速度会出现问题吗?
  • 请教在cygwin下使用make命令出现的一个问题?
  • linux下使用易飞ERP系统出现“报表数据库连接错误!!”是怎么回事
  • ubuntu 10.10出现极其诡异的情况,使用gcc编译没任何反应,可以继续输入,但是不提示任何错误;使用make编译效果一样;
  • xmms使用出现问题!!!
  • JBuilder 6 在 winxp 下使用微软拼音输入法,输入中文。出现不正常。jbuilder.死锁
  • 为什么在cygwin 中使用 ldd 出现conmand not found 的提示呢?
  • 校园网使用DR.COM出现问题
  • 请教:多线程使用同一个socket进行数据收发会出现什么问题?
  • 使用tcpdump出现问题
  • 使用gdb时为什么调用list不出现代码
  • **紧急求助:使用xmanager连接linux出现得错误*****
  • vim生成的.cpp~是什么文件?我使用vim编辑的时候出现了好多.cpp~文件
  • 使用tomcat出现的问题(socket write error),请教大家
  • 请问如何解决FC5使用或安装软件时不断出现一堆英文和数字?
  • 在配置了DNS并启动服务后,使用host命令察看主机,为什么会出现SERVFAIL的错误?
  • 使用mount函数,出现提示:Not a directory
  • 板子上的NAND FLASH使用后出现逻辑坏块是何原因
  • linux 中使用man命令出现乱码
  • 使用crontab导表出现的问题
  • linux下静态库使用:"未使用链接器输入文件,因为链接尚未完成"
  • 未使用链接器输入文件,因为链接尚未完成
  • 编译静态链接库,其中使用了其它链接库,该如何写makefile
  • 请高人指点,busybox使用不同链接名实现不同功能的原理?
  • 多线程中动态链接库的使用
  • 请教linux9。0中使用动态链接库的问题
  • unix 如何使用xlC_r把程序编译成动态链接库
  • linux能否使用*.DLL型动态链接库
  • 使用KDevelop编译链接出错
  • 使用delegate方法为一个tr标签加一个链接
  • 使用 epoll或poll ,如何确定 与客户端的链接断开 ?
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 怎样解决"Cannot set Socket Options for Trasnmit Socket" error 当使用setsockopt() 在solaris 5.8
  • 为arm平台写了个使用sdl的测试程序衔接时出现skipping incompatible然后就提示cannot find -lSDL了
  • C++ I/O 成员 tellg():使用输入流读取流指针
  • 在测试memset函数的执行效率时,分为使用Cash和不使用Cash辆种方式,该如何控制是否使用缓存?
  • C++ I/O 成员 tellp():使用输出流读取流指针
  • 求ibm6000的中文使用手册 !从来没用过服务器,现在急需使用它,不知如何使用! 急!!!!!
  • Python不使用print而直接输出二进制字符串
  • 请问:在使用oracle数据库作开发时,是使用pro*c作开发好些,还是使用库函数如oci等好一些啊?或者它们有什么区别或者优缺点啊?
  • Office 2010 Module模式下使用VBA Addressof
  • 急求结果!!假设一个有两个元素的信号量集S,表示了一个磁带驱动器系统,其中进程1使用磁带机A,进程2同时使用磁带机A和B,进程3使用磁带机B。
  • windows下tinyxml.dll下载安装使用(c++解析XML库)
  • c#中SAPI使用总结——SpVoice的使用方法
  • tcmalloc内存泄露优化c++开源库下载,安装及使用介绍
  • 使用了QWidget的程序,如何使用后台程序启动它?
  • sharepoint 2010 使用STSNavigate函数实现文件下载举例
  • 共享内存一般是怎么使用的,是同消息队列配合使用么
  • 使用libpcap读取tcpdump抓取的文件并解析c代码实例
  • Jsp可否使用带有GUI的JavaBean,如何使用?
  • c/c++预处理命令预#,##使用介绍
  • asp程序使用的access在Linux下如何使用!
  • 在div中使用css让文字底部对齐的方法
  • 新装的Linux使用root用户不能使用FTP?
  • Python namedtuple(命名元组)使用实例
  • LINUX下使用Eclipse,如何使用交叉编译器?


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3