如何在 nasm 中创建静态库并与 gcc 链接?
我想在(32 位)NASM 中实现许多具有以下签名的函数:
int function1();
int function2();
等。
然后我想创建一个目标文件并能够将其与使用 gcc 编译的 C++ 程序静态链接。我正在寻找返回 int 的函数的示例实现、导出符号所需的任何附加代码以及 NASM 的命令行以生成我可以静态链接到的 .a 文件。提前致谢。
I would like to implement a number of functions in (32bit) NASM that have the following signature:
int function1();
int function2();
etc.
Then I want to create an object file and be able to statically link it with a C++ program compiled with gcc. I am looking for an example implementation of a function that returns an int, any additional code needed to export the symbols and the command line for NASM to produce a .a file that I can link to statically. Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
汇编器将输出一个目标文件,只需在链接时使用它(我不记得 NASM 选项,所以不要逐字尝试这个 - 类似 nasm foo.asm -o foo.o; g++ -o prog foo. o bar.cpp)。
静态库只不过是目标文件的精美档案(因此是 .a 扩展名)。如果您确实想将单个对象打包到存档中,binutils 有 ar 实用程序。
Assembler will output an object file, just use it when linking (I don't remember NASM options, so don't try this verbatim — something like
nasm foo.asm -o foo.o; g++ -o prog foo.o bar.cpp
).Static libraries are nothing more than fancy archives (hence the .a extension) of object files. binutils has
ar
utility if you really want to pack a single object into an archive.