SN-10223 附来源、原文与上下文。
能把你的 debug.log 发给我吗?
Could you send me your debug.log?
随信附上 gcc 调试版本。
The gcc debug version is attached.
gdb 比你想象的容易用,只需要 gdb.exe 这一个文件。先运行 gdb bitcoin.exe,然后输入“run”。如果程序崩溃,再输入“backtrace”来输出调用栈;它也可能会自动输出。(可惜,调用栈回溯并不总能追溯得足够远。)
gdb is easier to use than you'd think. gdb.exe is the only file. You run gdb bitcoin.exe then type "run" then if it crashes, type "backtrace" for a stack dump, or it may do it automatically. (The stack trace doesn't always go far enough back unfortunately)