the frame size of 1096 bytes is larger than 1024 bytes

参考这位博主


国外Stack Overflow论坛解决方法

I'm guessing there's some large buffer in that routine that is stack-allocated; this is likely causing the stack frame of that function to exceed 1024 bytes, which seems to be some compiler-enforced limit for the architecture upon which you are building. Possible solutions would include passing a compiler flag to relax the warning, expand the upper limit of the stack size, or dynamically allocating the buffer.

猜你喜欢

转载自blog.csdn.net/xiang_shao344/article/details/82767474