很高兴!
同时也期待3.0的到来。版主能否透露一下什么时候才能Release啊?
看到wx的Daily Snapshot版本加入wxPropertyGrid了 Topic is solved
看到wx的Daily Snapshot版本加入wxPropertyGrid了
Life is not fair, get used to it.
我一直都用trunk作开发,没有链接问题啊~
In fascination of creating worlds by words, and in pursuit of words behind the world.
On Github: http://utensil.github.com
Technical Blog in Chinese: http://utensil.iteye.com/
On Github: http://utensil.github.com
Technical Blog in Chinese: http://utensil.iteye.com/
纠正一下:出现大量链接错误的原因是我在Debug模式下使用了release库。
2.8.9可以,但trunk不行了。
error LNK2001: unresolved external symbol __invalid_parameter_noinfo
原因:Debug工程使用Release库。
解决:将Release库换成Debug库。
描述:
1. __invalid_parameter_noinfo(ipn)是一个STL函数,只能在Release(定义了NDEBUG)下使用,其定义位于Release版的C++运行时库(CPRT)LIBCP.lib(单线程)或者LICPMT.lib或者MSVCPRT.dll(由MSVCPRT.lib导入)中。
2. 运行时库(CRT或CPRT)通常是自动跟着工程属性走(除非用户手工修改Code Generation > Runtime Library),且不能作为其他库的Dependencies
3. 假设Debug工程y.exe使用了Release库x.lib,而x.lib使用了ipn;由于工程为Debug自动链接LIBCPD.lib而不是LIBCP.lib,因此x.lib无法定位ipn。
2.8.9可以,但trunk不行了。
error LNK2001: unresolved external symbol __invalid_parameter_noinfo
原因:Debug工程使用Release库。
解决:将Release库换成Debug库。
描述:
1. __invalid_parameter_noinfo(ipn)是一个STL函数,只能在Release(定义了NDEBUG)下使用,其定义位于Release版的C++运行时库(CPRT)LIBCP.lib(单线程)或者LICPMT.lib或者MSVCPRT.dll(由MSVCPRT.lib导入)中。
2. 运行时库(CRT或CPRT)通常是自动跟着工程属性走(除非用户手工修改Code Generation > Runtime Library),且不能作为其他库的Dependencies
3. 假设Debug工程y.exe使用了Release库x.lib,而x.lib使用了ipn;由于工程为Debug自动链接LIBCPD.lib而不是LIBCP.lib,因此x.lib无法定位ipn。
Life is not fair, get used to it.