diff options
author | bfredl <bjorn.linse@gmail.com> | 2023-02-10 22:32:44 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-02-10 22:32:44 +0100 |
commit | 24aebbb3de83ef57c01a92ee6315eb8a6e15e402 (patch) | |
tree | 5a127ec3112d57a511c956c5502a5339c6bdc207 /src | |
parent | b8ad1bfe8bc23ed5ffbfe43df5fda3501f1d2802 (diff) | |
parent | 87d08095451d8d34030ddc62df093394f247740f (diff) | |
download | rneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.tar.gz rneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.tar.bz2 rneovim-24aebbb3de83ef57c01a92ee6315eb8a6e15e402.zip |
Merge pull request #21887 from bfredl/asanterror
build(ci): let ASAN print tracebacks for more errors (SIGABORT, SIGILL)
Diffstat (limited to 'src')
-rw-r--r-- | src/nvim/README.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/README.md b/src/nvim/README.md index 6876227e48..712fda87ba 100644 --- a/src/nvim/README.md +++ b/src/nvim/README.md @@ -70,8 +70,8 @@ Create a directory to store logs: Configure the sanitizer(s) via these environment variables: - # Change to detect_leaks=1 to detect memory leaks (slower). - export ASAN_OPTIONS="detect_leaks=0:log_path=$HOME/logs/asan" + # Change to detect_leaks=1 to detect memory leaks (slower, noisier). + export ASAN_OPTIONS="detect_leaks=0:log_path=$HOME/logs/asan,handle_abort=1,handle_sigill=1" # Show backtraces in the logs. export UBSAN_OPTIONS=print_stacktrace=1 export MSAN_OPTIONS="log_path=${HOME}/logs/msan" |