forrt1: severe (170): Program Exception - stack overflow

前端 未结 2 1072
没有蜡笔的小新
没有蜡笔的小新 2021-01-25 14:09

and thanks ahead of time for any help!

I have compiled a program (which I did not write) and it works just fine on Mac's but when I try to execute the program on Win

相关标签:
2条回答
  • 2021-01-25 14:51

    When you compile the program, try the option /heap-arrays to have the compiler place arrays on the heap instead of the stack. Otherwise try making the stack available to the executable larger.

    0 讨论(0)
  • 2021-01-25 15:04

    Try adding the following flags during compilation to get more information printed out:

    /traceback /check:all

    check will do runtime error checking, traceback will tell the compiler to generate extra information when a severe error occurs at runtime.

    0 讨论(0)
提交回复
热议问题