码迷,mamicode.com
首页 > 数据库 > 详细

Ubuntu 16.04使用NASM编译时用ld链接程序出现:i386 架构于输入文件 sandbox.o 与 i386:x86-64 输出不兼容(I386 architecture in the input file sandbox.o is not compatible with i386: x86-64 output)

时间:2017-07-25 10:27:06      阅读:1086      评论:0      收藏:0      [点我收藏+]

标签:tps   输出   版本   table   pat   tac   input   htm   style   

错误:

技术分享

问题解决过程:

1、先确定CPU的架构

技术分享

2、这是以64位架构的CPU,如果使用elf参数时,默认是以32位模式去处理,那么此时需要更精确的去指定这个模式,比如elf32(32位),elf64(64位),具体的参考:http://www.nasm.us/doc/nasmdoc7.html

那么改写上面的写法可以为:

nasm -f elf64 -g -F stabs sandbox.asm -o sandbox.o
ld -o sandbox sandbox.o

3、如果想编译程32位和64位的组合,那么可以从链接入手,写法可以改为:

nasm -f elf -g -F stabs sandbox.asm -o sandbox.o
ld -m elf_i386 -o sandbox sandbox.o

其实这里说法应该是不对的,不能说是组合,而是应该说是链接生成兼容32位模式的应用程序才对。

因为从上面可以看书,elf默认是32为,而elf_i386也为32位,其中elf_x86_64才是64位。所以,应该兼容才对。

也许上面说法也是不专业,或者这样说:nasm编译出来是32位的,而链接程序ld将32位的应用程序链接到了64位上做为可执行文件,这样做是不对的,应该将32位应用程序链接到32位上做为可执行文件。

所以,我觉得应该不是与CPU架构有关,而是应该与操作系统有关,操作系统区分32位和64位,而很多的汇编例子还是停留在32位x86上,造成以上的问题出现。

还有一点,使用ld时,有些书本上会这样写“ld -m elf_i386 -o sandbox.o sandbox”,现在新版本已经不支持了。

 

参考:

https://stackoverflow.com/questions/31369916/unable-to-compile-assembly-usr-bin-ld-i386-architecture-of-input-file-array1?rq=1

https://stackoverflow.com/questions/19200333/architecture-of-i386-input-file-is-incompatible-with-i386x86-64

https://en.wikipedia.org/wiki/Executable_and_Linkable_Format

https://stackoverflow.com/questions/11748970/how-to-pass-m-elf-i386-to-gcc

Ubuntu 16.04使用NASM编译时用ld链接程序出现:i386 架构于输入文件 sandbox.o 与 i386:x86-64 输出不兼容(I386 architecture in the input file sandbox.o is not compatible with i386: x86-64 output)

标签:tps   输出   版本   table   pat   tac   input   htm   style   

原文地址:http://www.cnblogs.com/EasonJim/p/7231913.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!