How to use multiple source files to create a singl

2019-01-24 06:06发布

I'm using the -c option with g++ to create a bunch of object files, and it's only letting me specify one source file for each object file. I want to have multiple files go into some of them. Is there any way to do this?

标签: c++ object gcc g++
8条回答
Juvenile、少年°
2楼-- · 2019-01-24 06:45

Others have mentioned archive, but another option is Unity builds.

Instead of:

g++ -c file1.cpp file2.cpp

Create a separate "unity file"

// This is the entire file (unity.cpp)
#include "file1.cpp"
#include "file2.cpp"
// more if you want...

Then

g++ -c unity.cpp

This also has the advantage of faster compilation and linking in many cases (because headers used by both file1.cpp and file2.cpp are only parsed once). However, if you put too many files in a single unity however then you'll find that you need to rebuild more sources than you wanted to, so you need to try and strike a balance.

查看更多
聊天终结者
3楼-- · 2019-01-24 06:45

You can utilize the ar command to create an archive for use by your program.

查看更多
登录 后发表回答