Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个包含许多 .o 文件的可执行文件。我想将这些目标文件减少到一个文件,但我没有可执行文件的源代码。是使用“ar”归档它们是这样做的方法还是如果不重新编译源就不可能?
您当然可以将目标文件与 ar 合并到一个库中。此外,ld -r允许将多个目标文件合并为一个。
ld -r