Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release
Posted on 2011-12-19 15:38 无忧consume 阅读(526) 评论(0) 编辑 收藏 举报option 'Wp64'
VS 2008中出现的错误 1>cl : Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release 原因:
vs2008不再建议使用/wp64检测64兼容问题,因为可以直接在32位OS上交叉编译为64位代码(vs2005也可以)。vs2008建议直接使用该方法检测64位兼容性问题。该选项被设置为“不推荐”有个原因是它会导致某些template库发生许多无效的warning。
解决办法:
property c/c++ Detect 64 bit Portability Issues设为No。
|