【发布时间】:2021-05-07 00:33:06
【问题描述】:
我刚刚用Delphi 10.4+gitlab+build机实现了一个CI/CD环境 一切工作显然是正确的,构建过程运行顺利,但是在使用该程序时,它随机显示与我通过 Delphi 本身内部的“shift+F9”(构建)手动构建相比从未发生过的错误。 构建过程:
call "C:\\Program Files (x86)\\Embarcadero\\Studio\\21.0\\bin\\rsvars.bat"
msbuild /target:rebuild /property:config=Debug;DCC_BuildAllUnits=true /p:platform=Win32 project.dproj
另外,我尝试了其他 msbuild 变体,例如:
msbuild /target:rebuild /property:config=Debug /p:platform=Win32 project.dproj
(也有 2 个步骤(target:clean 和 target:build)
我还将 msbuild dcc32.exe 命令与“Delphi”dcc32.exe 命令进行了比较,它们基本上是相等的,但对于 msbuild 输出的附加(不存在)文件夹:
-I"c:\program files (x86)\embarcadero\studio\21.0\lib\Win32\release\EN";...
最奇怪的是:在进行 msbuild 构建之后,如果我用 Delphi 打开我的项目,执行 clean+compile 程序变得更奇怪,给出其他错误,但如果我进行完整构建(shift+F9)然后它运行再次顺利 在我看来,使用的某些组件似乎没有在 msbuild 下正确编译或与其他参数一起使用,但我不知道它可能是什么或如何找到它。
在 Delphi 使用 cmd msbuild + clean + 在 Delphi 使用 compile 构建后出现错误:
First chance exception at $0019FB95. Exception class $C0000096 with message 'privileged instruction at 0x0019fb95'. Process project.exe (11324)
接着是:
First chance exception at $0040AE84. Exception class $C0000005 with message 'access violation at 0x0040ae84: read of address 0x0000000b'. Process project.exe (11324)
查看错误,它是在这段代码中引发的:
procedure TAdvancedField.asImageLoadToBitMap(var outBitmap:TBitmap); var FS : TMemoryStream;
FirstBytes: AnsiString;
Graphic : TGraphic;
begin try
FS := TMemoryStream.Create;
(Self as TBlobField).SaveToStream(FS);
fs.Position := 0;
SetLength(FirstBytes, 8);
FS.Read(FirstBytes[1], 8);
//Graphic := nil; //I add this line after my debug, and commented to confirm
//if Copy(FirstBytes, 1, 2) = 'BM' then
//begin
// Graphic := TBitmap.Create;
//end else
//if FirstBytes = #137'PNG'#13#10#26#10 then
//begin
// Graphic := TPngImage.Create;
//end else
//if Copy(FirstBytes, 1, 3) = 'GIF' then
//begin
// Graphic := TGIFImage.Create;
//end else
//if Copy(FirstBytes, 1, 2) = #$FF#$D8 then
//begin
// Graphic := TJPEGImage.Create;
// TJPEGImage(Graphic).CompressionQuality := 100;
//end;
if Assigned(Graphic) then
begin
try
FS.Seek(0, soFromBeginning);
Graphic.LoadFromStream(FS); //The error raised HERE
outBitmap.Assign(Graphic);
except
end;
Graphic.Free;
end
else
begin
outBitmap.Assign(nil);
end;
finally
fs.Free;
end;
end;
如您所见,Graphic 变量并未在任何地方初始化。但是使用干净的 Delphi 构建它可以完美地运行 Assigned(Graphic) 总是返回 false,但在 msbuild 之后它返回为 true。如果这对其他类似情况是正确的,它将导致整个项目出现意外行为。
另一种情况: 我在主窗体上放了一个按钮,带有一个引发异常,+ 应用程序异常处理程序 + JCVStackTrace 处理程序,这是捕获的堆栈:
[017B7DE5] pcnConversao.RegTribISSQNToStr (Line 1301, "pcnConversao.pas" + 1) + $104
[006B6973] Vcl.Controls.TWinControl.ArrangeControl + $147
[006BB36F] Vcl.Controls.TWinControl.DoKeyUp + $73
[005A4998] Vcl.StdCtrls.TCustomCheckBox.SetChecked + $0
[006BB4CF] Vcl.Controls.TraverseControls + $37
[006BB36F] Vcl.Controls.TWinControl.DoKeyUp + $73
[0067E227] Vcl.Forms.TCustomForm.CreateWnd + $97
[006BA8BC] Vcl.Controls.TWinControl.WMInputLangChange + $8
[004F4A18] System.Classes.TStreamWriter.WriteLine + $C
[006BB47A] Vcl.Controls.TWinControl.WMChar + $2
[006BB36F] Vcl.Controls.TWinControl.DoKeyUp + $73
[005A4998] Vcl.StdCtrls.TCustomCheckBox.SetChecked + $0
[004F4A18] System.Classes.TStreamWriter.WriteLine + $C
顺便说一句,pcnConversao 只是我的项目间接使用的
正确的是:
[01709661] UModulo.TModulo.BitBtn3Click (Line 568, "UModulo.pas" + 0) + $11
[006BB3E7] Vcl.Controls.TWinControl.WndProc + $693
[005A4A10] Vcl.StdCtrls.TButtonControl.WndProc + $6C
[006BB547] Vcl.Controls.DoControlMsg + $23
[006BB3E7] Vcl.Controls.TWinControl.WndProc + $693
[0067E29F] Vcl.Forms.TCustomForm.WndProc + $6DB
[006BA934] Vcl.Controls.TWinControl.MainWndProc + $2C
[004F4A90] System.Classes.StdWndProc + $14
[006BB4F2] Vcl.Controls.TWinControl.DefaultHandler + $E6
[006BB3E7] Vcl.Controls.TWinControl.WndProc + $693
[005A4A10] Vcl.StdCtrls.TButtonControl.WndProc + $6C
[004F4A90] System.Classes.StdWndProc + $14
注意:
看起来不同的堆栈与在Delphi Compiler->Compiling->Code Generation检查的Stack Frames直接相关,仍然与未初始化变量处编译器的发散方式无关
【问题讨论】:
-
你的程序显示什么错误?
-
已编辑问题有 2 个错误,如果需要,我将在明天粘贴其他问题
-
我看不到任何错误消息。细节很重要。
-
看起来它与 .dproj 相关创建了一个新的 .dproj 并复制了我的配置,直到现在我在新的 dproj 中的 dcc32.exe 中找到了这个参数,但我当前没有定义一:
-K00400000 -GD我正在做更多的测试,到目前为止我在两个版本中都没有错误,一旦我得到错误我会在这里发布 -
好的,但是,不初始化局部变量会导致不良行为。永远不会说何时何地会发生这种行为,但您已经注意到,当使用不同的构建方法/配置时可能会发生这种情况。因此需要始终初始化局部变量!
标签: delphi msbuild delphi-10.4.2