How to use multiple source files to create a single object file with gcc(如何使用多个源文件通过 gcc 创建单个目标文件)
问题描述
我使用 g++ 的 -c 选项来创建一堆目标文件,它只让我为每个目标文件指定一个源文件.我想让多个文件进入其中的一些.有没有办法做到这一点?
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?
推荐答案
其他人提到了存档,但另一个选项是 Unity builds.
Others have mentioned archive, but another option is Unity builds.
代替:
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...
然后
g++ -c unity.cpp
在很多情况下,这还具有编译和链接速度更快的优点(因为 file1.cpp
和 file2.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.
这篇关于如何使用多个源文件通过 gcc 创建单个目标文件的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何使用多个源文件通过 gcc 创建单个目标文件
基础教程推荐
- 您如何将 CreateThread 用于属于类成员的函数? 2021-01-01
- 调用std::Package_TASK::Get_Future()时可能出现争用情况 2022-12-17
- 什么是T&&(双与号)在 C++11 中是什么意思? 2022-11-04
- 如何在 C++ 中处理或避免堆栈溢出 2022-01-01
- 运算符重载的基本规则和习语是什么? 2022-10-31
- 设计字符串本地化的最佳方法 2022-01-01
- C++ 程序在执行 std::string 分配时总是崩溃 2022-01-01
- C++,'if' 表达式中的变量声明 2021-01-01
- C++ 标准:取消引用 NULL 指针以获取引用? 2021-01-01
- 如何定义双括号/双迭代器运算符,类似于向量的向量? 2022-01-01