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.
在 Eclipse 中,当我保存代码文件时,有没有办法为保存的文件编译目标文件,然后在我运行或调试时将它们链接在一起?这是带有 GCC 的 Linux 上的 C++。
我不这么认为。在 Eclipse CDT 中,构建过程是显式启动的。我认为“自动构建”选项用于 Java 和 Eclipse 知道如何构建的其他语言。C++ 项目通常使用某种 make 实用程序构建。您可以自定义您的 make 文件以设置不同的构建目标,以提高性能并减少构建/编译时间。