如何在Eclipse中一次从多个源文件构建

vybvopom  于 2023-04-20  发布在  Eclipse
关注(0)|答案(1)|浏览(162)

我有一个Eclipse C++项目,它最初有first.cpp。然后添加second.cpp并将其链接到原始文件。使用Eclipse构建工具,我得到了以下输出:

make all 
Building file: ../src/first.cpp
Invoking: GCC C++ Compiler
g++ -I/home/workspace/first/src -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/first.d" -MT"src/first.o" -o "src/first.o" "../src/first.cpp"
Finished building: ../src/first.cpp
 
Building file: ../src/second.cpp
Invoking: GCC C++ Compiler
g++ -I/home/workspace/first/src -O0 -g3 -Wall -c -fmessage-length=0 -MMD -MP -MF"src/second.d" -MT"src/second.o" -o "src/second.o" "../src/second.cpp"
Finished building: ../src/second.cpp
 
Building target: first
Invoking: GCC C++ Linker
g++ -L/usr/local/lib -o "first"  ./src/first.o ./src/second.o
Finished building target: first

如何让Eclipse以这种方式编译?

g++ first.cpp second.cpp -o first

更新

我问的是如何从多个源文件生成一个二进制文件,而不是building multiple binaries with multiple source files

rqdpfwrv

rqdpfwrv1#

尝试使用CMake根据我对您问题的理解,您需要将您的源文件添加到 CMakeList.txt 中,然后运行它。您可以使用this tutorial来执行此操作。

相关问题