如何在 nasm 中创建静态库并与 gcc 链接?

发布于 2024-12-25 01:55:27 字数 226 浏览 1 评论 0原文

我想在(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

森罗 2025-01-01 01:55:27

汇编器将输出一个目标文件,只需在链接时使用它(我不记得 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文