VC++ libcurl .lib 大小
编译 libcurl 时,我遇到了 .lib 大小的问题。它有 1.6 MB,他们拥有的示例程序约为 300 KB。
我下载了最新版本(curl-7.20.0)并从 Visual Studio 2008 中的 lib 目录中打开了项目文件。在项目属性中,我设置了 /MT 并编译了发布版本。我什至尝试将 HTTP_ONLY 添加到处理器,这似乎没有影响任何东西。这是怎么回事?
I'm having an issue with the size of the .lib when I compile libcurl. It's 1.6 MB and the sample program they have is alround 300 KB.
I downloaded the latest version (curl-7.20.0) and opened the project file from the lib directory in visual studio 2008. In the project properties I set /MT and compiled a release build. I even tried adding HTTP_ONLY to the processor which didn't seem to affect anything. What's going on?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
关闭整个程序优化以保持合理的大小。项目 + 属性、C/C++、优化。
Turn off Whole Program Optimization to keep the size reasonable. Project + Properties, C/C++, Optimization.