How to convert a dynamic dll to static lib?(如何将动态 dll 转换为静态库?)
问题描述
我写了一个程序helloworld.exe;它取决于 a.dll.我没有 a.dll 的源代码,它是一个动态 dll.如何将其更改为静态库,以便将其链接到 helloworld.exe?
I write a program helloworld.exe; it depends on a.dll. I don't have the source code of the a.dll, which is a dynamic dll. How can i change it to static library, so I can link it into helloworld.exe?
推荐答案
抱歉,没有直接的办法.DLL 是完全链接的可执行格式文件,其中静态库是收集在一起的单独对象文件的集合.通过一些工作,您可以将静态库转换为 DLL,但反向操作并非易事(委婉地说).
Sorry, but there's no direct way to do so. A DLL is a fully linked executable format file, where a static library is a collection of separate object files collected together. With a little bit of work, you can convert a static library to a DLL, but doing the reverse is non-trivial (to put it mildly).
这篇关于如何将动态 dll 转换为静态库?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:如何将动态 dll 转换为静态库?
基础教程推荐
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 从 std::cin 读取密码 2021-01-01
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- Windows Media Foundation 录制音频 2021-01-01