Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--mono/mini/mini-posix.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/mono/mini/mini-posix.c b/mono/mini/mini-posix.c
index 6a8a3859888..de5f3a50b88 100644
--- a/mono/mini/mini-posix.c
+++ b/mono/mini/mini-posix.c
@@ -1239,8 +1239,10 @@ mono_gdb_render_native_backtraces (pid_t crashed_pid)
}
#if defined(HOST_DARWIN)
- if (native_stack_with_lldb (crashed_pid, argv, commands_handle, commands_filename))
- goto exec;
+ // lldb hangs on attaching on Catalina
+ return;
+ //if (native_stack_with_lldb (crashed_pid, argv, commands_handle, commands_filename))
+ // goto exec;
#endif
if (native_stack_with_gdb (crashed_pid, argv, commands_handle, commands_filename))