使用 eclipse cdt 生成的代码比命令行生成的速度快得多
我有以下问题。我使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您应该查看 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.