Android libc.so crash?

后端 未结 2 1299
感情败类
感情败类 2020-12-24 04:09

I\'m using AndEngine with the PhysicsBox2DExtension to make a game. My game keeps crashing and I get this in the unfiltered LogCat:

07-06 13:25:27.266: I/DEB         


        
2条回答
  •  误落风尘
    2020-12-24 04:47

    libc is experiencing a segmentation violation, almost certainly because andengine gave it a bad pointer. You probably don't have debug symbols for libc, but you can adb pull and objdump it to figure out what dynamic function is being given bad arguments. Or if your andengine library has debug symbols, you can track down the address there using the address to line tool.

    You will have to figure out if it is a bug in what you are asking andengine to do, or if the bug is in andengine itself.

提交回复
热议问题