如何从Linux上的汇编代码调用c库?

前端之家收集整理的这篇文章主要介绍了如何从Linux上的汇编代码调用c库?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我正在尝试在英特尔架构上的 Linux程序集中编译一个小程序.我想使用C库的一些功能,但它没有链接.

这是我的装配程序:

.text
.globl main

main:
    pushl $512
    call malloc
    addl $4,%esp

    mov $1,%eax
    mov $0,%ebx
    int $0x80

我正在编译

as --32 -o output.o output.asm

一切顺利.然后当我联系时

ld -static -m elf_i386 -o a.out output.o -lc

,我收到了这些错误

(.text+0x1b8): undefined reference to _Unwind_Resume'
/usr/lib32/libc.a(iofclose.o):(.eh_frame+0x167): undefined reference
to
__gcc_personality_v0′ /usr/lib32/libc.a(iofflush.o): In function
fflush': (.text+0xd7): undefined reference to_Unwind_Resume’
/usr/lib32/libc.a(iofflush.o):(.eh_frame+0xdf): undefined reference to
__gcc_personality_v0' /usr/lib32/libc.a(iofputs.o): In function
fputs’: (.text+0x108): undefined reference to _Unwind_Resume'
/usr/lib32/libc.a(iofputs.o):(.eh_frame+0xdf): undefined reference to
__gcc_personality_v0′ /usr/lib32/libc.a(iofwrite.o): In function
`fwrite’:

(我还有其他错误,但我认为这足以看出问题了)

我看到一些解决方案表明我应该与-lgcc链接,但在我的计算机上找不到库…

有人有想法吗?

解决方法

glibc要求某些初始化代码与可执行文件静态链接.最简单的方法是使用gcc链接
gcc -static -o a.out output.o

通过将-v传递给gcc,您可以确切地看到链接内容.

原文链接:https://www.f2er.com/linux/393060.html

猜你在找的Linux相关文章