- 论坛徽章:
- 0
|
我在做项目的时候发现gcc在对多个lib或.o连接的时候会受引用顺序影响。
比如:
gcc main.o foo1.a foo2.a -o myapp
gcc main.o foo2.a foo1.a -o myapp
编译结果会不一样。我怀疑是在不同库之间的函数调用的关系引起的,并
在gcc的Using the GNU Compiler Collection中看到有这些解释:
the linker searches and processes libraries and object files in the order they are specified.
Thus, ‘foo.o -lz bar.o’ searches library ‘z’ after file ‘foo.o’ but before
‘bar.o’. If ‘bar.o’ refers to functions in ‘z’, those functions may not be loaded.
Chapter 3: GCC Command Options 87
所以猜想是连接库顺序应该是越在后面的越是底层的,即不出现后面库中调用前面模块中的函数。
于是,自己做了个简单的小例子:
两个库,liba.a和libb.a。其中libb.a中调用了liba.a的函数。本以为如下的编译会不通过,但通过了!
gcc main.o liba.a libb.a -o myapp
望哪位兄弟指点一下到底连接时候对各个库的引用顺序有没有什么要求?如果有是怎样的顺序?如果没有我在项目中碰到的情况怎么解释呢?
内容有点多!!多谢看完! |
|