JEDI代码库行号例外

时间:2010-02-20 18:21:54

标签: numbers line jedi-code-library

我有一个代码集C ++构建器项目,并添加了JCL库以在发生异常时获取stackdump。我得到了stackdump,但最重要的是缺少了实际发生异常的行号。我得到了函数名称,但是如果函数是30行,则不容易猜出问题所在。

我在这里错过了什么吗?

1 个答案:

答案 0 :(得分:1)

我进一步调查它,至少现在使用Delphi 2007对我有用。我认为它对C ++ Builder来说也是一样的。

我的猜测是你还没有在编译器选项中检查调试信息“使用调试DCU”。 我在使用Delphi编译的JCL中尝试了包含的示例 的实例\ Windows \调试\ stacktrack \ StackTrackDemoMain.pas

以下是输出示例:

[0047C478]{StackTrackExample.exe} StackTrackDemoMain.TMainForm.Button1Click (Line 49, "StackTrackDemoMain.pas")
[00442590]{StackTrackExample.exe} Controls.TControl.Click (Line 5229, "Controls.pas")
[00446083]{StackTrackExample.exe} Controls.TWinControl.WndProc (Line 7304, "Controls.pas")
[0042ECB8]{StackTrackExample.exe} StdCtrls.TButtonControl.WndProc (Line 3684, "StdCtrls.pas")
[004461D3]{StackTrackExample.exe} Controls.DoControlMsg (Line 7353, "Controls.pas")
[00446083]{StackTrackExample.exe} Controls.TWinControl.WndProc (Line 7304, "Controls.pas")
[004577A3]{StackTrackExample.exe} Forms.TCustomForm.WndProc (Line 3512, "Forms.pas")
[004457AC]{StackTrackExample.exe} Controls.TWinControl.MainWndProc (Line 7073, "Controls.pas")
[0041EC14]{StackTrackExample.exe} Classes.StdWndProc (Line 11583, "common\Classes.pas")
[0044617F]{StackTrackExample.exe} Controls.TWinControl.DefaultHandler (Line 7334, "Controls.pas")
[00446083]{StackTrackExample.exe} Controls.TWinControl.WndProc (Line 7304, "Controls.pas")
[0042ECB8]{StackTrackExample.exe} StdCtrls.TButtonControl.WndProc (Line 3684, "StdCtrls.pas")
[0041EC14]{StackTrackExample.exe} Classes.StdWndProc (Line 11583, "common\Classes.pas")

注意:我已更改文件StackTrackDemoMain.pas方法TMainForm.ApplicationEventsException

JclLastExceptStackListToStrings(ExceptionLogMemo.Lines, True, False, False, False);
祝你好运!