使用 eclipse cdt 生成的代码比命令行生成的速度快得多

发布于 2024-10-19 05:57:10 字数 179 浏览 2 评论 0原文

我有以下问题。我使用 OpenCV 用 C++ 编写了一个程序。我使用 Eclipse CDT 作为带有 g++ 4.4 编译器的 IDE。当我在命令行中编译程序时,二进制文件比使用 eclipse 编译的程序大大约两倍并且慢得多。在这两种情况下,我都使用动态链接(至少我是这么认为)并且没有使用任何特殊选项。这个问题的原因可能是什么? 谢谢。

I have the following question. I've done a program in C++ using OpenCV. I used Eclipse CDT as an IDE with g++ 4.4 compiler. When I compile the program in command line the binary is about two times bigger and much slower than that done with eclipse. In both cases I use dynamic linking (at least I think so) and I use no special options. What can be the reason of this issue?
Thanks.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

吾性傲以野 2024-10-26 05:57:10

您应该查看 Eclipse 正在使用的优化选项来编译您的程序。

例如,-Os 选项告诉 GCC 尽可能减小大小。

You should look the optimization option that Eclipse is using too compile your program.

For example, the -Os option tells GCC to reduce the size as much as possible.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文