这是一个有点复杂的场景 - 在实践中甚至更复杂,但我设法将这个问题最小化。
我定义了两个 Delphi 包:BasePackage.dpk 和 AnotherPackage.dpk
package BasePackage;
requires
rtl;
contains
Base in 'Base.pas';
end.
和
package AnotherPackage;
requires
BasePackage;
contains
Another in 'Another.pas';
end.
和单位
unit Base;
interface
type
TMethod = procedure;
TEncodeableType = record
Method: TMethod;
end;
PEncodeableType = ^TEncodeableType;
procedure Method_Impl;
const
TestMethod_Type: TEncodeableType = (
Method: Method_Impl;
);
implementation
procedure Method_Impl;
begin
end;
end.
和
unit Another;
interface
uses
Base;
implementation
const
ResponseType: PEncodeableType = @TestMethod_Type;
end.
基本上一切都编译得很好,我什至可以生成基本的 C++Builder 单元,'dcc32 -JPHNEK --BCB'
但是当我尝试为 C++Builder 生成库文件时,'dcc32 -JPHNEK --BCB -JL'
我得到了
>dcc32 -JPHNEK --BCB -JL BasePackage.dpk
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
BasePackage.dpk(10)
11 lines, 0.09 seconds, 3688 bytes code, 176 bytes data.
>dcc32 -JPHNEK --BCB -JL AnotherPackage.dpk
Embarcadero Delphi for Win32 compiler version 32.0
Copyright (c) 1983,2017 Embarcadero Technologies, Inc.
AnotherPackage.dpk(10)
Error: E2201 Need imported data reference ($G) to access 'TestMethod_Type' from unit 'Another'
我尝试过使用不同的编译选项(当然还引入了{$G+}
或{$IMPORTEDDATA ON}
单元和包(尽管它是默认设置),但没有看到它们有任何区别。
这些包在 .cfg 中没有任何选项或使用这些选项进行编译:
-$A+
-$B-
-$C-
-$D-
-$E-
-$F-
-$G+
-$H+
-$I-
-$J-
-$K-
-$L+
-$M-
-$N+
-$O+
-$P+
-$Q-
-$R-
-$S-
-$T+
-$U-
-$V-
-$W-
-$X+
-$Y-
-$Z1
-cg
-AWinTypes=Windows;WinProcs=Windows;DbiTypes=BDE;DbiProcs=BDE;DbiErrs=BDE;
-H+
-W+
-M
-$M16384,1048576
-K$00300000
-Z
并且在 .dpk 中没有任何选项或使用这些选项:
{$ALIGN 8}
{$ASSERTIONS ON}
{$BOOLEVAL OFF}
{$DEBUGINFO ON}
{$EXTENDEDSYNTAX ON}
{$IMPORTEDDATA ON}
{$IOCHECKS ON}
{$LOCALSYMBOLS ON}
{$LONGSTRINGS ON}
{$OPENSTRINGS ON}
{$OPTIMIZATION ON}
{$OVERFLOWCHECKS ON}
{$RANGECHECKS ON}
{$REFERENCEINFO OFF}
{$SAFEDIVIDE OFF}
{$STACKFRAMES OFF}
{$TYPEDADDRESS OFF}
{$VARSTRINGCHECKS ON}
{$WRITEABLECONST ON}
{$MINENUMSIZE 1}
{$IMAGEBASE $300000}
{$DESIGNONLY}
{$IMPLICITBUILD OFF}
知道我是否可以完成这项工作(我真的需要不同软件包中的功能)?
我一直在使用 Delphi 10.2 Tokyo 和 XE4 进行编译,结果相同。