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

前端 未结 2 1136
没有蜡笔的小新
没有蜡笔的小新 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 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.

提交回复
热议问题