适用于 Linux 的 Sun Studio 12 C 编译器非常慢
我今天下载并尝试了。
它编译了我的项目,但“suncc”比“gcc”更慢,后者以悠闲着称。我只是 -xO1 我认为不应该做任何优化。我有很多内联声明的 C 函数。有没有办法禁用内联或其他任何东西以使其编译速度更快。
I download and tried it today.
It compiles my project but "suncc" is even slower then "gcc" which is famous for its leisureliness. I just -xO1 which i thought should do no optimizations. I have a lot of inline declared C functions. Is there a way to disable the inlining or anything else to make it compile faster.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
-xO1 进行基本优化。根据 Sun 文档:
如果您不需要任何优化,请删除所有 -xOn 选项。
-xO1 does basic optimizations. According to the Sun documentation:
If you don't want any optimization, remove any -xOn options.