减少 dll 大小 vc++
我想使用 VisualStudio 8 尽可能减小应用程序的大小。 为此需要设置哪些编译器选项?
这是我设置的
1.项目属性->配置属性->常规->MFC的使用 “在共享 DLL 中使用 MFC” 2.项目属性->配置属性->c/c++->优化->优化 “最小化尺寸(/O1)” 3.项目属性->配置属性->c/c++->优化->偏好大小或速度 “青睐小代码(/Os)”
请让我知道可以使用的其他选项。
I want reduce the size of my application as much as possible using VisualStudio 8.
what are the compiler options that are required to be set for this?
Here are the ones the i have set
1.project properties->configuration properties->General->use of MFC
"Use MFC in a Shared DLL"
2.project properties->configuration properties->c/c++->optimization->optimization
"Minimize Size (/O1)"
3.project properties->configuration properties->c/c++->optimization->Favor Size or Speed
"Favor Small Code (/Os)"
Please let me know the other options that can be used.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您的编译器选项位于正确的行,但还有其他编译器和链接器选项。看看这里这篇文章,其中有一些其他的想法,具体取决于您想要做多少工作放入这个。
Your compiler options are on the right lines but there are others for compiler and linker. Take a look at the article here which has some other ideas, depending on how much work you want to put into this.