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。

 

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-06-10
  • 2021-11-19
  • 2022-02-02
  • 2022-12-23
猜你喜欢
  • 2021-05-15
  • 2021-09-06
  • 2021-08-15
  • 2022-12-23
  • 2021-10-10
相关资源
相似解决方案