is incompatible with i386:x86-64 output报错

Posted zx1116

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了is incompatible with i386:x86-64 output报错相关的知识,希望对你有一定的参考价值。

在[一个操作系统的实现]书中,第五章,开始编译elf文件格式的操作系统内核。

将hello.asm编译为hello.o,再编译为可执行文件

编译hello.o时,nasm报错is incompatible with i386:x86-64 output。

原因是原实验是在32位操作系统下做的,使用的库也是32位的,而现在使用的64位操作系统。

 

解决方法:

修改上述两步编译的写法:

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

也可以生成兼容32位的应用程序,再编译为可执行文件:

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

 

 

顺便,gcc编译也会出现类似问题

/usr/bin/ld: warning: i386 architecture of input file `./src/main.o‘ is incompatible with i386:x86-64 output

出现这种警告的时候的时候,运行程序老是段错误,要加-ms32,就好了。

gcc -m32 -o usehello_static usehello.c libhello.a

以上是关于is incompatible with i386:x86-64 output报错的主要内容,如果未能解决你的问题,请参考以下文章

keil5error: #147: declaration is incompatible with ..........

keil5error: #147: declaration is incompatible with ..........

mfc视类中错误:IntelliSense: declaration is incompatible with。。。解决方案

npm Node Sass version 7.0.1 is incompatible with ^4.0.0.

npm Node Sass version 7.0.1 is incompatible with ^4.0.0.

error hawk@0.10.2: The engine “node“ is incompatible with this module. Expected versi