English 中文(简体)
不从 64 位系统启动的 32 位 NASM 组装
原标题:32-bit nasm assembly not starting on 64 bit system

我写了一个32比特的组装文件,我想在64比特的Linux系统上编集(并使它发挥作用),我安装了 gcc-multilib lib32-glibbc

我尝试用以下命令创建二进制文件 :

nasm -f elf test.asm
ld -melf_i386 -o test -e _main test.o /usr/lib32/libc.so.6 

输入点为。 文件测试被创建, 我将它:

chmod ugo+x ./test

但是,我不能打开它,我明白了:

bash: ./test: No such file or directory

我敢肯定文件是存在的,因为我可以打开文件的震动(我可以看到在第一行所写的ELF)。这是怎么回事?

问题回答

信息与动态链接有关, 因为使用动态图书馆需要更多努力。 简单的方式是连接静态 C 库( / usr/ lib32/ libc.a) 。 但如果您将您的切入点调用为“ main ”, 并将其像普通 C 程序( gcc - m32 - o 测试.o) 一样链接, 它也会有效 。

问题不在汇编器中 。

实际上你输入错误命令 。

1) 用于编辑32位程序命令 : nasm - f elf32 测试.asm

    and for 64 bit asm or assembly language file command is : nasm -f elf64 test.asm

2) 在编译后,您需要链接此命令的文件 :

     ld -o test test.o  ( for both the 64/32 bit program)

3)和现在,u将能够通过使用命令执行程序:

      ./test




相关问题
NASM Assembler Debugger

Is there a utility like CodeView that I can use to step through code assembled by NASM where I can see the current state of the registers/memory?

MASM/NASM Differences

What are the syntax differences between the NASM and MASM assemblers?

Mono ASM Generation

I want to try write a simple kernel in C# like cosmos, just for learning. Is it possible to generate x86 or x86-64 ASM from a Mono assembly? because mono --full-aot generates an executable... After ...

A good NASM/FASM tutorial? [closed]

Does anyone know any good NASM or FASM tutorials? I am trying to learn assembler but I can t seem to find any good resources on it.

What s the file format used by gcc in OSX?

I m trying to learn assembly using NASM, the pcasm-book.pdf from Dr Paul Carter - http://www.drpaulcarter.com/pcasm/ - on my Mac OS X Snow Leopard. I m trying to link the previous compiled C sample ...

NASM accessing sound card directly (No OS)

I m attempting to write a very simple OS in ASM and C. (NASM assembler) I would like to access the sound card directly, with or without drivers. If I don t need drivers, how could I access and send a ...

热门标签