Visual Studio 2005中有没有像_MSC_BUILD(从vs2008开始支持)这样的预定义宏?
我希望使用任何预定义的宏,例如 _MSC_BUILD(来自 vs2008),因为我想使用编译器的修订号。
但我在vs2005中找不到这个。
感谢您的帮助。
I hope for using any predefined macro like _MSC_BUILD (from vs2008) because I want to use revision number of compiler.
but i can't find that in vs2005.
thank you for your help.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
VS 2005 的预定义宏列表显示用于获取编译器版本的
_MSC_VER
。The predefined macros list for VS 2005 shows
_MSC_VER
for getting the compiler versions.VS2005 时代没有(可访问的)修订版号,所以遗憾的是,没有。有关可用宏的完整列表,请参阅以下网站:
http ://msdn.microsoft.com/en-us/library/b0084kay(VS.80).aspx
There were no (accessible) revision numbers in the days of VS2005, so sadly, no there isn't. See the following web site for a full list of available macros:
http://msdn.microsoft.com/en-us/library/b0084kay(VS.80).aspx