The node currently reads like this:
When Vim crashes in one of the test files, and you are using gcc for
compilation, here is what you can do to find out exactly where Vim crashes.
This also applies when using the MingW tools.
1. Compile Vim with the "-g" option (there is a line in the Makefile for this,
which you can uncomment).
2. Execute these commands (replace "11" with the test that fails): >
cd testdir
gdb ../vim
run -u unix.vim -U NONE -s dotest.in test11.in
...
The first problem is that there doesn't seem to be a line in the
Makefile for adding the -g option. I don't think its needed really, as
it seems that the -g option gets used anyway.
The next problem is that the binaries get stripped at installation time,
and the docs don't mention this. It works if you use the constructed
binary in place but not otherwise.
Britton
--
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