Porting VC++'s __try/__except EXCEPTION_STACK_OVERFLOW to MinGW

前端 未结 4 1960
眼角桃花
眼角桃花 2021-01-02 16:57

I am trying to port some code using VC++\'s try-except statement to MinGW:

bool success = true;

__try {
    //...
} __except ((EXCEPTION_STACK_OVERFLOW == G         


        
4条回答
  •  抹茶落季
    2021-01-02 17:39

    You might want to look into LibSEH for adding Structured Exception Handling compatibility for MinGW.

提交回复
热议问题