Command line warning D9035 : option 'Wp64' has been deprecated and will be removed in a future release

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。

 

你可能感兴趣的:(command)