6

让程序在编译时找出依赖关系很容易(使用 gcc -MM)。然而,链接依赖性(决定应该链接到哪些库)似乎很难弄清楚。当需要具有要链接到的各个库的多个目标时,此问题就会出现。

例如,需要构建三个动态库目标 t1.so、t2.so 和 t3.so。t1.so 需要数学库 (-lm),而 t2 和 t3 不需要。编写单独的规则会很乏味。需要与数学库链接的三个目标的单个规则可以省去麻烦。但是,它会导致目标大小膨胀,因为数学库未用于 t2.so 和 t3.so。

有任何想法吗?

4

3 回答 3

1

这不像找到所需的标题那么容易弄清楚。gcc -MM只是使用预处理器的一种奇特方式,但它对代码的使用或工作方式几乎一无所知:您可以包含一些充满#define's 的标头或引入复杂的依赖库依赖项。

我会坚持为所有目标(在您的情况下为 3 个)编写显式链接依赖项。您可以在LDFLAGS.

于 2010-03-19T04:33:47.820 回答
1

看起来ld's--trace选项是一个好的开始。输出需要格式化,但我认为它包含所有正确的信息。

我的调用看起来像这样:

$ g++ -o foo a.o b.o -l sfml-graphics -l sfml-window -Wl,--trace
/usr/bin/ld: mode elf_i386
/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/crt1.o
/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/crti.o
/usr/lib/gcc/i686-linux-gnu/4.6/crtbegin.o
a.o
b.o
-lsfml-graphics (/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libsfml-graphics.so)
-lsfml-window (/usr/lib/gcc/i686-linux-gnu/4.6/../../../../lib/libsfml-window.so)
-lstdc++ (/usr/lib/gcc/i686-linux-gnu/4.6/libstdc++.so)
-lm (/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/libm.so)
-lgcc_s (/usr/lib/gcc/i686-linux-gnu/4.6/libgcc_s.so)
/lib/i386-linux-gnu/libc.so.6
(/usr/lib/i386-linux-gnu/libc_nonshared.a)elf-init.oS
/lib/i386-linux-gnu/ld-linux.so.2
-lgcc_s (/usr/lib/gcc/i686-linux-gnu/4.6/libgcc_s.so)
/usr/lib/gcc/i686-linux-gnu/4.6/crtend.o
/usr/lib/gcc/i686-linux-gnu/4.6/../../../i386-linux-gnu/crtn.o
于 2012-08-07T00:32:20.257 回答
0

您是否尝试过使用“nm”?它为您提供对象/库文件中已定义和未定义符号的列表(请参阅此处的文档。

Bernd Strieder在这篇文章中提到了一种我正在考虑使用的方法 -

1. Use nm to generate a list of symbols in all object/library files involved. 
2. This file is parsed and basically the (U)ndefined and (T)ext symbols 
   and the symbols of main functions are filtered out and mapped to their 
   object files. I found that U and T symbols suffice, which reduces the 
   overall problem considerably compared to the linker, which has to 
   consider all symbols. 
3. The transitive hull of the dependency relation according to U and T 
   symbols between object files is being calculated. 
4. A list of object files needed to resolve all dependencies can be 
   printed for any object file. 
5. For any main object file, a make target to link it is arranged.
于 2012-08-24T22:59:15.377 回答