makefile - make 文件中的 -wl, --start-group 是什么意思?

标签 makefile

我的 Make 文件中有这个..

# Create list of object files
#
LIB_OBJS =  -Wl,--start-group \
$(T_OBJ_DIR)/Source1.o \
$(T_OBJ_DIR)/Source2.o \
$(T_OBJ_DIR)/Source3.o \
$(T_OBJ_DIR)/Source4.o \
$(T_OBJ_DIR)/Source5.o \
-Wl,--end-group \

谁能解释一下“-Wl,--start-group”和“-Wl,--end-group”是什么意思?

最佳答案

这些是链接器的标志(这就是 -Wl 的含义),因此 ld (链接器)的文档将解释其余部分。

来自man page对于 GNU ld:

-( archives -)

--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.

关于makefile - make 文件中的 -wl, --start-group 是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30915657/

相关文章:

c - fatal error : addFunc. h:没有那个文件或目录

python -/usr/include/boost/python/detail/wrap_python.hpp :50:23: fatal error: pyconfig. h: 没有那个文件或目录

c - 如何正确创建和使用makefile

makefile - Makefile中有多个冒号和等号(需要说明)

linux - 每条规则的运行时间

c - 对 `pow' 的 undefined reference - makefile

c++ - OpenCV GTK+2.x 错误 - "Unspecified error (The function is not implemented...)"

android - 在 Eclipse 中构建 Android 项目时构建 C++ 共享对象

c++ - 在 Makefile 的什么地方放东西(CFLAGS 或 CXXFLAGS)?

process - 如何在不中断make进程的情况下中断make进程