免费注册 查看新帖 |

Chinaunix

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

请问g++编译器这个问题怎么解决? [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2010-04-07 16:31 |只看该作者 |倒序浏览
g++编译器在寻找静态库的函数的时,是从这个库后面的库去寻找;

在生成可执行程序 test的时候
比如,库a引用了库b,则应当写成g++ -o test -la -lb ;
如果写成g++ -o test -lb -la,就会报错说一些库a 里面引用库b的函数找不到;

但是,如果需要链接进来三个活三个以上的静态库文件,比如liba.a, libb.a, libc.a,
这三个静态库是这么个的依赖关系:liba 引用了libb,libb引用了libc,libc引用了liba;

请问这种循环引用的时候,要怎么写编译命令??

其他编译器,如果AIX的vacpp,就没有这个问题,库的顺序可以随便,因为vacpp编译器是从所有列出来的库里面去找函数,而不是像g++,只从该库后面的库去寻找;

不知道g++有没有什么编译开关可以解决这个问题??

千万别告诉我 去调整 liba,libb,libc让他们不循环引用;

论坛徽章:
0
2 [报告]
发表于 2010-04-07 16:54 |只看该作者
试试这样的顺序
liba libb libc liba

论坛徽章:
0
3 [报告]
发表于 2010-04-07 17:01 |只看该作者
回复 2# aimmit


    这个肯定不是方法;呵呵
因为实际中,会有可能更多个库,不能一直重复的写;

论坛徽章:
2
摩羯座
日期:2013-10-10 14:29:04天蝎座
日期:2014-01-03 09:14:49
4 [报告]
发表于 2010-04-08 17:31 |只看该作者
ld里面有这个选项(http://sourceware.org/binutils/docs/ld/Options.html#Options):
--start-group archives --end-group
    The archives should be a list of archive files. They may be either explicit file names, or `-l' options.

    The specified archives are searched repeatedly until no new undefined references are created. Normally, an archive is searched only once in the order that it is specified on the command line. If a symbol in that archive is needed to resolve an undefined symbol referred to by an object in an archive that appears later on the command line, the linker would not be able to resolve that reference. By grouping the archives, they all be searched repeatedly until all possible references are resolved.

    Using this option has a significant performance cost. It is best to use it only when there are unavoidable circular references between two or more archives.
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

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

清除 Cookies - ChinaUnix - Archiver - WAP - TOP