优化不会出现在 EXE 中的 DLL 是否有任何注意事项?

发布于 2024-12-01 00:46:43 字数 115 浏览 1 评论 0原文

我通常熟悉 -O2 或 -O3 开关执行的各种优化。

我已经被一些特定于构建 DLL 的问题所困扰,而这些问题在编写平面可执行文件时不会出现,所以在我开始打开优化之前,是否有任何我应该注意的“陷阱”?

I am generally familiar with the sorts of optimizations performed by the -O2 or -O3 switches.

I have been bitten a couple of times now by issues that are specific to building a DLL that don't appear in writing a flat executable, so before I start turning on optimizations are there any "gotcha"s that I should be aware of?

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

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

发布评论

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

评论(1

天赋异禀 2024-12-08 00:46:43

EXE 中的死代码消除基本上从 main 作为可达性的单一根开始,但 DLL 的每个导出函数都是一个单独的根。

Dead code elimination in an EXE basically starts with main as the single root of reachability, but every exported function of a DLL is a separate root.

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