2

我正在尝试将程序集(用 编译)与/yasm编译的对象结合起来,我试图将(用)链接到 a中,然后将其链接到最终的可执行文件。msvccl.exelink.exe.dll

从源代码创建对象文件和从这些对象创建 dll 都可以正常工作。

在最后一步中,将.dll与可执行文件链接会出现以下错误:

 error LNK2019: unresolved external symbol xxx_xxxx

我正在使用 C。尽管 Win64 没有名称修饰,但我尝试了多种方案(如_xxx_xxxxor __imp_xxx_xxxx)。

检查目标文件会dumpbin.exe显示所有符号:

$ dumpbin /symbols myobj.o
File Type: COFF OBJECT

COFF SYMBOL TABLE
000 00000000 DEBUG  notype       Filename     | .file

002 00000000 SECT1  notype       Static       | .text
Section length  215, #relocs    0, #linenums    0, checksum        0
004 00000057 SECT1  notype       External     | xxx_xxxx
005 0000013E SECT1  notype       External     | xxx_xxxx
006 00000000 SECT1  notype       External     | xxx_xxxx

但不在从以下导出的符号中.dll

$ dumpbin /exported mylib.dll
File Type: DLL

  Section contains the following exports for mylib.dll

    00000000 characteristics
    57A0FE02 time date stamp Tue Aug 02 22:09:38 2016
        0.00 version
           1 ordinal base
         132 number of functions
         132 number of names

 [...]

即使我已将声明标记为在内部导出.dll,使用__declspec(dllexport).

任何想法如何满足链接器并告诉他符号确实存在?

4

1 回答 1

2

如您所见,问题在于 DLL 没有公开所需的符号。__declspec(dllexport)不是导出符号的唯一方法。如果您有一些导出的名称,您可以使用/EXPORT链接器开关。另一种选择是使用模块定义文件。

于 2016-08-02T20:31:20.080 回答