-
Notifications
You must be signed in to change notification settings - Fork 175
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
61f1e44
commit fb5e52a
Showing
1 changed file
with
16 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 |