linux编译提示文件系统不兼容


在linux下用make编译文件提示“i386文件系统的输入结构和 i386:x86-64输出不兼容”,这个该怎么解决?

Linux makefile linux-kernel

srrse 9 years, 9 months ago

1.使用uname -a查看本地服务器的架构
2.使用file查看你引用的文件(一般是库)是否是本地服务器支持的ELF文件;
3.如果不是,需要你找到你引入的那个库的源代码,在本地服务器上编译一个新的库,然后再引入这个库来编译你目标;


 [/home/weber/soft/redis-2.6.16/src#]file redis-cli
redis-cli: ELF 64-bit LSB  executable, x86-64, version 1 (SYSV), dynamically linked (uses shared libs), for GNU/Linux 2.6.24, BuildID[sha1]=45d1591eee3065de934365255a360813ac20bd70, not stripped
[/home/weber/soft/redis-2.6.16/src#]uname -a
Linux me115.com 3.13.0-36-generic #63-Ubuntu SMP Wed Sep 3 21:30:07 UTC 2014 x86_64 x86_64 x86_64 GNU/Linux

背光的暗面 answered 9 years, 9 months ago

Your Answer