奇怪的 EXC_Crash (SIGKILL) 错误报告
当我在设备上启动应用程序时,屏幕变黑并且应用程序崩溃。但屏幕仍然是黑的,而不是典型的崩溃,让你回到跳板。这是我的崩溃错误:
Incident Identifier: 28A191D0-5795-4EEA-81EB-5C12628A47B0
CrashReporter Key: 9185dbd80ba3cc9fed14413529e4c277f99bca98
Hardware Model: iPod4,1
Process: Dixie Mat Tracker [11536]
Path: /var/mobile/Applications/A170FE48-8FCE-4C47-B69C-0F048C50281C/Dixie Mat Tracker.app/Dixie Mat Tracker
Identifier: Dixie Mat Tracker
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2011-07-06 17:04:21.131 -0400
OS Version: iPhone OS 4.3.3 (8J2)
Report Version: 104
Exception Type: EXC_CRASH (SIGKILL)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 0
Thread 0 Crashed:
0 dyld 0x2fe0124a dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*) + 446
1 dyld 0x2fe01058 _dyld_start + 48
Thread 0 crashed with ARM Thread State:
r0: 0x00000000 r1: 0x00000009 r2: 0x00000009 r3: 0x00026000
r4: 0x0002601c r5: 0x00000000 r6: 0x00000005 r7: 0x2fe24a38
r8: 0x2fe4b18c r9: 0x2fe72964 r10: 0x2fe254f4 r11: 0x00025000
ip: 0x2fe72984 sp: 0x2fe249f0 lr: 0x2fe249cc pc: 0x2fe2624a
cpsr: 0x60000030
Binary Images:
0x2fe25000 - 0x2fe4afff dyld armv7 <bb9bfc7d242331d29a79adf7ef7aaa18> /usr/lib/dyld
When I start my app on device, the screen goes black and the app crashes. But the screen remains black rather than typical crash where you are brought back to springboard. Here's my crash error:
Incident Identifier: 28A191D0-5795-4EEA-81EB-5C12628A47B0
CrashReporter Key: 9185dbd80ba3cc9fed14413529e4c277f99bca98
Hardware Model: iPod4,1
Process: Dixie Mat Tracker [11536]
Path: /var/mobile/Applications/A170FE48-8FCE-4C47-B69C-0F048C50281C/Dixie Mat Tracker.app/Dixie Mat Tracker
Identifier: Dixie Mat Tracker
Version: ??? (???)
Code Type: ARM (Native)
Parent Process: launchd [1]
Date/Time: 2011-07-06 17:04:21.131 -0400
OS Version: iPhone OS 4.3.3 (8J2)
Report Version: 104
Exception Type: EXC_CRASH (SIGKILL)
Exception Codes: 0x00000000, 0x00000000
Crashed Thread: 0
Thread 0 Crashed:
0 dyld 0x2fe0124a dyldbootstrap::start(macho_header const*, int, char const**, long, macho_header const*) + 446
1 dyld 0x2fe01058 _dyld_start + 48
Thread 0 crashed with ARM Thread State:
r0: 0x00000000 r1: 0x00000009 r2: 0x00000009 r3: 0x00026000
r4: 0x0002601c r5: 0x00000000 r6: 0x00000005 r7: 0x2fe24a38
r8: 0x2fe4b18c r9: 0x2fe72964 r10: 0x2fe254f4 r11: 0x00025000
ip: 0x2fe72984 sp: 0x2fe249f0 lr: 0x2fe249cc pc: 0x2fe2624a
cpsr: 0x60000030
Binary Images:
0x2fe25000 - 0x2fe4afff dyld armv7 <bb9bfc7d242331d29a79adf7ef7aaa18> /usr/lib/dyld
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我在 Xcode 4.2 中升级到 LLVM 编译器时遇到了这个问题。有问题的配置选项位于“其他链接器标志”中。我基本上删除了其中的所有内容:
删除这些选项后,我就可以再次在模拟器上运行应用程序,而不会发生 dyldbootstrap::start 崩溃。
I had this problem when upgrading to the LLVM compiler in Xcode 4.2. The offending configuration option was in "Other Linker Flags". I basically removed everything that was in there which was:
Once I deleted those options, I was able to run the application on the simulator again, without the
dyldbootstrap::start
crash.