Christian Brabandt <[email protected]> wrote: > On Sa, 08 Mai 2021, Christian Brabandt wrote: > > > Program received signal SIGSEGV, Segmentation fault. > > 0x000055555581acf5 in exec_instructions (ectx=0x7fffffff2da0) at > > vim9execute.c:1367 > > 1367 switch (iptr->isn_type) > > Hm, the log does not show, iptr is null. > > BTW: I also compiled an asan version, but even so I did export > ASAN_OPTIONS="print_stacktrace=1 log_path=asan.log", I did not get an > asan report :/
According to https://github.com/google/sanitizers/wiki/AddressSanitizerFlags The various options should be separated by a colon, not a space. Try putting also full path such as log_path=/tmp/asan.log otherwise if vim changes the current directory, it may be hard to know where asan.log is. Or run ./vim 2> log asan.log. Consider also trying with valgrind. Dominique -- -- You received this message from the "vim_dev" maillist. Do not top-post! Type your reply below the text you are replying to. For more information, visit http://www.vim.org/maillist.php --- You received this message because you are subscribed to the Google Groups "vim_dev" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/vim_dev/CAON-T_j%2BHR5ni-GcbtmE1PP5n0WsvjCArwvc%2Brzpro0iuU2PPw%40mail.gmail.com.
