When building a project with Visual C++ 6.0, you may get the following linker error:
error LNK2001: unresolved external symbol __chkesp
The new compiler stack-checking feature requires you to link with the C run-time library.
Either link with one of the C run-time libraries or disable the compiler stack-checking feature (remove /GZ from the compiler switches).
当使用Visual C++ 6.0构建项目时,可能会遇到链接器错误LNK2001:未解决的外部符号__chkesp。这通常是因为新的编译器堆栈检查特性要求与C运行时库链接。本文将指导您如何解决此问题,通过链接C运行时库或禁用编译器堆栈检查。
233

被折叠的 条评论
为什么被折叠?



