我有一个用nasm编译的示例程序集文件:
nasm -f elf syscall.asm
ld -o syscall syscall.o
ld: i386 architecture of input file `syscall.o' is incompatible with i386:x86-64 output
但是,如果我这样做
ld -o syscall syscall.o -melf_i386
弄清楚nasm没有生成x86-64格式的目标代码我在syscall.asm文件的开头添加了“BITS 64”指令.
然后尝试使用nasm组装syscall.asm会出现以下错误:
error: elf output format does not support 64-bit code
这看起来很奇怪,因为在我的终端上执行“file /usr/bin/nasm”会给出:
/usr/bin/nasm: ELF 64-bit LSB executable,x86-64,version 1 (SYSV),dynamically linked (uses shared libs),for GNU/Linux 2.6.18,stripped
我的64位Fedora Core 11安装了最新版本的nasm,我的cpu是Intel Core 2 Duo E7200.
[编辑]
我的问题是如何让nasm发出与i386兼容的目标文件:x86-64.
@H_403_34@