从 DLL 文件生成导入库

9 篇文章 0 订阅

gendef 和 pexports

gendef和pexports都可以从DLL和对应头文件中提取信息,创建相应的.def文件以列出每个DLL中可用的符号。然后,你可以用dlltool(binutils)通过.def文件来生成对应的导入库(import library),这样就可以解决DLL开发商未提供所需开发平台导入库的问题。

安装

gendef和pexports可以通过MinGW(32-bit)安装管理器安装:
gendef
pexports
也可以通过上图中给出的链接直接下载。
由于它们只能通过“All Packages”分类才能选中下载,其下的子项中都没有列出,非常隐蔽。
在MSYS2/MinGW-w64环境下查询和安装gendef的命令:

pacman -Fy
pacman -F gendef.exe
pacman -S --needed mingw-w64-x86_64-tools-git

软件描述

在这里插入图片描述

gendef can extract information from DLLs to create corresponding .def files that list the symbols available in each DLL. .def files can then be used by dlltool (mingw32-binutils) to generate import libraries. gendef is similar to pexports, but the two tools differ in how each determines the “decoration” (or calling convention) appropriate for each symbol, since that information is not always available directly from the DLL’s symbol table. gendef locates the symbol’s code in the DLL, and uses a disassembler to determine that information. pexports can use a C pre-processor to extract the information, provided you have the appropriate header files. Neither method is foolproof, so both tools are provided.
gendef was written by the MinGW64 team. It can extract symbols from 32bit or 64bit EXEs or DLLs. It can automatically detect stdcall, fastcall, and cdecl calling conventions and generate the correctly decorated function names, without requiring the header files or a C pre-processor.

Description

pexports can extract information from DLLs to create corresponding .def files that list the symbols available in each DLL. .def files can then be used by dlltool (mingw32-binutils) to generate import libraries. pexports is similar to gendef, but the two tools differ in how each determines the “decoration” (or calling convention) appropriate for each symbol, since that information is not always available directly from the DLL’s symbol table. pexports can use a C pre-processor to extract the information, provided you have the appropriate header files. gendef locates the symbol’s code in the DLL, and uses a disassembler to determine that information. Neither method is foolproof, so both tools are provided.
Note that in order for pexports to detect the calling convention, you must specify on the command line the headers to parse. If the symbols are not declared in those headers, then the proper decorations cannot be computed. Originally written by Anders Norlander, it now supports both 32bit and 64bit DLLs and EXEs thanks to Tor Lillqvist.

例子

gendef steam_api64.dll
dlltool -D steam_api64.dll -d steam_api64.def -l libsteam_api64.a

第一步生成steam_api64.def。
第二步如果缺少"-d steam_api64.def",在链接 libsteam_api64.a 时就会出现“undefined reference to ‘xxx’”之类的错误。

参考

Sourceforge: gendef
Sourceforge: Generating an import library for a DLL
Sourceforge: MSYS2 gendef is not found
Github: gendef
Github: pexports
GNU binutils

  • 0
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值