适用于 Linux 的 Sun Studio 12 C 编译器非常慢

发布于 2024-08-20 05:48:04 字数 122 浏览 6 评论 0原文

我今天下载并尝试了。

它编译了我的项目,但“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 技术交流群。

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

发布评论

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

评论(1

≈。彩虹 2024-08-27 05:48:04

-xO1 进行基本优化。根据 Sun 文档

 On x86 platforms:

      -xO1 Preloads arguments from memory, cross-jumping
           (tail-merging), as well as the single pass of the
           default optimization.

如果您不需要任何优化,请删除所有 -xOn 选项。

-xO1 does basic optimizations. According to the Sun documentation:

 On x86 platforms:

      -xO1 Preloads arguments from memory, cross-jumping
           (tail-merging), as well as the single pass of the
           default optimization.

If you don't want any optimization, remove any -xOn options.

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