Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[CHORE] Add .lldbinit for debugging #2750

Merged
merged 1 commit into from
Aug 28, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 16 additions & 0 deletions .lldbinit
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# automatically load LLDB settings for Daft
#
# lldb automatically tries to load this file whenever it is executed from the
# root of the Daft repo, but by default it is not allowed to do so due to
# security reasons. If you want it to be loaded automatically, please add the
# following line to your ~/.lldbinit (i.e., the .lldbinit file which is in your
# home directory, NOT this file):
# settings set target.load-cwd-lldbinit true
#
# Alternatively, you can manually load this file into your
# existing lldb session by doing the following:
# (lldb) command source .lldbinit

settings set target.process.stop-on-exec false
settings set platform.plugin.darwin.ignored-exceptions EXC_BAD_INSTRUCTION
process handle SIGILL -n false -p true -s false
Loading