This is an automated email from the ASF dual-hosted git repository.

comphead pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion-comet.git


The following commit(s) were added to refs/heads/main by this push:
     new a1a82fdd1 docs: Add some .lldbint configurations for debugging 
document (#3686)
a1a82fdd1 is described below

commit a1a82fdd188c7d212ecf9478a6a1ab3a7aedfc13
Author: Zhen Wang <[email protected]>
AuthorDate: Wed Mar 18 10:13:24 2026 +0800

    docs: Add some .lldbint configurations for debugging document (#3686)
---
 docs/source/contributor-guide/debugging.md | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/docs/source/contributor-guide/debugging.md 
b/docs/source/contributor-guide/debugging.md
index 1d2447d2e..3356a8389 100644
--- a/docs/source/contributor-guide/debugging.md
+++ b/docs/source/contributor-guide/debugging.md
@@ -33,8 +33,14 @@ _Caveat: The steps here have only been tested with JDK 11_ 
on Mac (M1)
 
 ## Debugging for Advanced Developers
 
-Add a `.lldbinit` to comet/core. This is not strictly necessary but will be 
useful if you want to
-use advanced `lldb` debugging.
+Add a `.lldbinit` to comet/native. This is not strictly necessary but will be 
useful if you want to
+use advanced `lldb` debugging. For example, we can ignore some exceptions and 
signals that are not relevant
+to our debugging and would otherwise cause the debugger to stop.
+
+```
+settings set platform.plugin.darwin.ignored-exceptions 
EXC_BAD_ACCESS|EXC_BAD_INSTRUCTION
+process handle -n true -p true -s false SIGBUS SIGSEGV SIGILL
+```
 
 ### In IntelliJ
 


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to