无法打开包含文件:“aes.h”:没有这样的文件或目录(VS 2010)
我使用 Visual Studio 2010 命令成功在 x86 架构中构建 boost 1.48:
b2 --toolset=msvc-10.0 --build-type=complete stage
尝试在发布模式下批量构建时出现此错误。
我的VS 2010项目配置:
VC++目录:(
- 包含)D:\boost_1_48_0(提取路径)
- (库)D:\boost_1_48_0\stage\lib
C/C++ ->代码生成:(
- 运行时库)多线程(/MT)
我是否缺少某些配置?
附加信息(我不知道这是否重要):我也使用 wxWidgets
I successfully build boost 1.48 in x86 architecture using visual studio 2010 command:
b2 --toolset=msvc-10.0 --build-type=complete stage
I got this error when trying to batch build in release mode.
My VS 2010 project configuration:
VC++ Directories:
- (Include) D:\boost_1_48_0 (extracted path)
- (Library) D:\boost_1_48_0\stage\lib
C/C++ -> Code Generation:
- (Runtime Library) Multi-threaded(/MT)
Am I missing some configuration?
Additional Info (I dont know if this matters) :I also use wxWidgets
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
boost 和 wxWidgets 均未实现任何加密功能 (AES)
检查您的应用是否使用 openssl 因为这是最有可能找到此类标头的候选者。
Neither boost nor wxWidgets implement any crypto functions (AES)
Check whether your app uses openssl since that is the most likely candidate where you will find such a header.