vs版本与_MSC_VER的对应

文章详细介绍了在使用VS2010编译时遇到错误C1189的原因及解决方法,涉及到_MSC_VER宏的作用、库版本与编译器版本的匹配问题,并提供了在不同编译器版本下如何选择对应库文件的解决方案。重点在于解决VS2010环境下库与编译器版本不兼容导致的编译错误。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

同学问到一个问题,没有明白问题的原因。多方查找资料后,发现是程序使用的库与开发环境版本问题。

程序用vs2010编译时,出现错误。

错误	1	error C1189: #error :  "Wrong Compiler. This library does only run with Visual C++ 7.1 and Visual C++ 6. Newer versions are currently not supported."
打开此文件,部分代码如下:

#if !defined _MSC_VER
	#error "Wrong Compiler. This library does only run with Visual C++ 7.1 and Visual C++ 6. To suppress this Error, uncomment this line."
#else
	#if _MSC_VER < 1200
		// older then VC6, too old to use library.
		#error "Wrong Compiler. This library does only run with Visual C++ 7.1 and Visual C++ 6. Older compiler versions are not supported."
	#elif _MSC_VER == 1200
		// VC6
	#elif _MSC_VER == 1300
		// VC70 not supported
		#error "Wrong Compiler. This library does only run with Visual C++ 7.1 and Visual C++ 6. VC7.0 is not supported."
	#elif _MSC_VER == 1310
		// VC71
	#elif _MSC_VER == 1400
		// VC80
	#elif _MSC_VER == 1500
		// VC90
	#else
		#error "Wrong Compiler. This library does only run with Visual C++ 7.1 and Visual C++ 6. Newer versions are currently not supported."
		// other maybe newer compiler ...
	#endif
#endif

然后,查了下_MSC_VER,原来是用来定义编译器的版本。

MS VC++10.0 _MSC_VER=1600(VS2010)
MS VC++9.0 _MSC_VER=1500(VS2008)
MS VC++8.0 _MSC_VER=1400(VS2005)
MS VC++7.0 _MSC_VER=1300
MS VC++7.1 _MSC_VER=1310
MS VC++6.0 _MSC_VER=1200
在程序中加入_MSC_VER宏可以根据编译器版本让编译器选择行的编译一段程序。 例如一个版本编译器产生的lib文件可能不能被另一个版本的编译器调用,那么在开发应用程序的时候,在该程序的lib调用库中放入多个版本编译器产生的lib文件。[1]

此实例就是这个问题,文件中的代码:

#if !defined UDSHL_LIB_NO_LINK
	#if (!defined _MSC_VER || _MSC_VER >= 1500)	// vc80 compiler, and other here
		#pragma warning( disable : 4996) // Disable deprecated warnings.

		#if defined _DEBUG
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc9d.lib" )
		#else
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc9.lib" )
		#endif
	#elif (!defined _MSC_VER || _MSC_VER >= 1400)	// vc80 compiler, and other here
		#pragma warning( disable : 4996) // Disable deprecated warnings.

		#if defined _DEBUG
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc8d.lib" )
		#else
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc8.lib" )
		#endif
	#elif (!defined _MSC_VER || _MSC_VER >= 1300)	// vc71 compiler, and other here
		#if defined _DEBUG
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc71d.lib" )
		#else
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc71.lib" )
		#endif
	#else
		#if defined _DEBUG
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc6d.lib" )
		#else
			#pragma comment ( lib, UDSHL_LIB_DIR "IAT_UDSHL07_vc6.lib" )
		#endif
	#endif

根据不同的版本选择对应的库(IAT_UDSHL07_vc**.lib)文件。还分为debug和release版。

问题是,如果我只安装了vs2010该怎么运行呢?

更改工程的属性->平台工具集,选择v90后,提示

错误	1	error MSB8010: 指定的平台工具集(v90)需要 Visual Studio 2008。请确保在计算机上安装 Visual Studio 2008。



[1]. _MSC_VER.http://baike.so.com/doc/515910.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值