Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dyld`__abort_with_payload: With no error message

Tags:

xcode

ios

xcode8

When I start my app with Xcode, I have a crash, but without an error.

The app is just stopping on this thread:

Enter image description here

What can I do to have more information about the issue?

like image 675
Kevin ABRIOUX Avatar asked Feb 03 '17 15:02

Kevin ABRIOUX


3 Answers

If you are using custom frameworks, you need to put it inside the "Embedded Binaries" section located in the Xcode project under the tab Target / General.

like image 71
mkonovalov Avatar answered Oct 31 '22 19:10

mkonovalov


For me a simple Clean and Rebuild sorted it out.

like image 40
FlixMa Avatar answered Oct 31 '22 20:10

FlixMa


This problem appeared after a system update up to macOS 10.15.2 beta (Catalina). Disabling "Thread Sanitizer" solved the issue (Xcode 11.2). Now I can't use Thread Sanitizer and have to wait for the next OS update.

Enter image description here

like image 32
Дмитрий Акимов Avatar answered Oct 31 '22 21:10

Дмитрий Акимов