我正在尝试将程序集(用 编译)与/yasm
编译的对象结合起来,我试图将(用)链接到 a中,然后将其链接到最终的可执行文件。msvc
cl.exe
link.exe
.dll
从源代码创建对象文件和从这些对象创建 dll 都可以正常工作。
在最后一步中,将.dll
与可执行文件链接会出现以下错误:
error LNK2019: unresolved external symbol xxx_xxxx
我正在使用 C。尽管 Win64 没有名称修饰,但我尝试了多种方案(如_xxx_xxxx
or __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)
.
任何想法如何满足链接器并告诉他符号确实存在?