推荐的 clang 优化级别?

发布于 2024-12-05 22:44:04 字数 78 浏览 0 评论 0原文

clang 使用的“标准”优化级别是什么?我相信“O2”对于 gcc 来说是一个不错的选择 - 这也适用于 clang,或者是否有更好的选择?

What's the "standard" optimization level used for clang? I believe that "O2" is a good choice for gcc - does that hold for clang also, or is there a generally better alternative?

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

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

发布评论

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

评论(2

错々过的事 2024-12-12 22:44:04

-O2-Os 都是与 clang 一起使用的不错选择。

-O2 and -Os are both good choices for general use with clang.

岁月无声 2024-12-12 22:44:04

-O3 通常会为您提供最小和最快的代码,但确实会暴露代码中不明显的错误。

一般来说,您应该确保您的代码在所有可能的优化下都能正常运行。

-O3 will usually give you both the smallest and fastest code, but does tend to expose non obvious bugs in your code.

In general, you should make sure your code runs fine with all possible optimizations.

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