将两个GCC编译的.o目标文件组合成第三个.o文件
如何将两个GCC编译的.o目标文件合并到第三个.o文件中?
$ gcc -c a.c -o a.o
$ gcc -c b.c -o b.o
$ ??? a.o b.o -o c.o
$ gcc c.o other.o -o executable
如果您有权访问源文件, -combine
GCC标志将在编译之前合并源文件:
$ gcc -c -combine a.c b.c -o c.o
但是,这只适用于源文件,并且GCC不接受.o
文件作为此命令的输入。
通常,链接.o
文件无法正常工作,因为您无法将链接器的输出用作输入。 结果是一个共享库,并没有静态链接到生成的可执行文件中。
$ gcc -shared a.o b.o -o c.o
$ gcc c.o other.o -o executable
$ ./executable
./executable: error while loading shared libraries: c.o: cannot open shared object file: No such file or directory
$ file c.o
c.o: ELF 32-bit LSB shared object, Intel 80386, version 1 (SYSV), dynamically linked, not stripped
$ file a.o
a.o: ELF 32-bit LSB relocatable, Intel 80386, version 1 (SYSV), not stripped
将-r
(或--relocatable
)传递给ld
将创建适合作为ld
输入的对象。
$ ld -r a.o b.o -o c.o
$ gcc c.o other.o -o executable
$ ./executable
生成的文件与原始.o
文件的类型相同。
$ file a.o
a.o: ELF 32-bit LSB relocatable, Intel 80386, version 1 (SYSV), not stripped
$ file c.o
c.o: ELF 32-bit LSB relocatable, Intel 80386, version 1 (SYSV), not stripped
如果要创建两个或多个.o文件(即静态库)的存档,请使用ar
命令:
ar rvs mylib.a file1.o file2.o
链接地址: http://www.djcxy.com/p/85829.html
上一篇: combine two GCC compiled .o object files into a third .o file
下一篇: export gone, exception specs deprecated. Will this affect your code?