visual-studio - Visual C++ 6.0 - fatal error C1063

标签 visual-studio visual-c++ visual-studio-2008 porting visual-c++-6

我已将最初在 MS Visual Studio 2008 中编写的应用程序转换为在 MS Visual C++ 6.0 上编译 ( see my previous question )。

转换后,我的所有代码现在都在发布版中编译,没有调试信息。在调试中我遇到一个奇怪的问题...错误C1063。

fatal error C1063: 
Error executing cl.exe. 
main.obj - 1 error(s), 163 warning(s)

您认为解决此问题的最佳实践是什么?

最佳答案

Fatal Error C1063

Visual Studio 6.0

compiler limit : compiler stack overflow

  • The program was too complex and caused the compiler stack to overflow. This error may be a result of recursive includes.

Tips

  • Simplify the program by splitting it into smaller source files, and recompile.

您是否有意外递归的调试代码?

关于visual-studio - Visual C++ 6.0 - fatal error C1063,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3958212/

相关文章:

c# - System.Configuration.ConfigurationManager.ConnectionStrings 没有配置连接字符串

c++ - 奇怪的,float类型的参数在windows中传入函数

c - Win32 到 Win64 移植编译问题

c - Linux 中的文件锁定

visual-c++ - GCC内联汇编错误: no such instruction: `stosd'

c++ - 如何在 C++ 中为前向声明类型实现一元运算符重载?

c - 如何使格式文档快捷方式适用于 Visual Studio 2008 中的 C 源文件?

c# - 如何在文本框中设置固定行距?

c++ - 如何在基于 MFC 对话框的应用程序中为复选框捕获 MouseMove 事件?

c# - 在 Visual Studio 中查看变量的地址位置