Why is /Wp64 deprecated?

前端 未结 4 432
后悔当初
后悔当初 2020-12-17 15:04

Why is the /Wp64 flag in Visual C++ deprecated?

cl : Command line warning D9035 :
option \'Wp64\' has been deprecated and will be r

4条回答
  •  清酒与你
    2020-12-17 15:37

    Because when using the 64 Bit compiler from VS2010 the compiler does the detection of 64 bit problems automatically... this switch is from back in the day when you could try to detect 64 Bit problem running the 32 Bit compiler...

    See http://msdn.microsoft.com/en-us/library/yt4xw8fh%28v=VS.100%29.aspx

提交回复
热议问题