在x86_64上运行ARM二进制文件

时间:2017-02-07 13:45:25

标签: arm cross-compiling x86-64

我不确定SO是否是提出这个问题的最佳地点,但是......

我使用

在Linux Ubuntu(16.04)上编译了我的C程序
gcc -o MM1.x86 -O3 -static -mavx2 -g -Wall MM1.c

运行文件命令

file MM1.x86 

MM1.x86: ELF 64-bit LSB executable, x86-64, version 1 (GNU/Linux), statically linked, for GNU/Linux 2.6.32, BuildID[sha1]=078be440b466ba97bd4bf468b24eee35f8c6a01f, not stripped

但我也使用

交叉编译了ARM的相同源文件
arm-linux-gnueabi-gcc -o MM1.ARM -O3 -static -g -Wall MM1.c

运行文件

file MM1.ARM

MM1.ARM: ELF 32-bit LSB executable, ARM, EABI5 version 1 (SYSV), statically linked, for GNU/Linux 3.2.0, BuildID[sha1]=b6582e1073682d41eb5262ad5393cebb8578e05d, not stripped

但是在运行ARM编译程序之后,我想知道如果它是为ARM架构编译的,它甚至可以在x86_64上运行吗?

lscpu

Architecture:          x86_64
CPU op-mode(s):        32-bit, 64-bit
Byte Order:            Little Endian
CPU(s):                8
On-line CPU(s) list:   0-7
Thread(s) per core:    2
Core(s) per socket:    4
Socket(s):             1
NUMA node(s):          1
Vendor ID:             GenuineIntel
CPU family:            6
Model:                 60
Model name:            Intel(R) Core(TM) i7-4790 CPU @ 3.60GHz  
Stepping:              3
CPU MHz:               886.640
CPU max MHz:           4000.0000
CPU min MHz:           800.0000
BogoMIPS:              7183.90
Virtualisation:        VT-x
L1d cache:             32K
L1i cache:             32K
L2 cache:              256K
L3 cache:              8192K
NUMA node0 CPU(s):     0-7
Flags:                 fpu vme de pse tsc msr pae mce cx8 apic sep mtrr pge mca cmov pat pse36 clflush dts acpi mmx fxsr sse sse2 ss ht tm pbe syscall nx pdpe1gb rdtscp lm constant_tsc arch_perfmon pebs bts rep_good nopl xtopology nonstop_tsc aperfmperf eagerfpu pni pclmulqdq dtes64 monitor ds_cpl vmx smx est tm2 ssse3 sdbg fma cx16 xtpr pdcm pcid sse4_1 sse4_2 x2apic movbe popcnt tsc_deadline_timer aes xsave avx f16c rdrand lahf_lm abm epb tpr_shadow vnmi flexpriority ept vpid fsgsbase tsc_adjust bmi1 avx2 smep bmi2 erms invpcid xsaveopt dtherm ida arat pln pts

我注意到ARM版本的运行速度稍慢,为什么会这样?

0 个答案:

没有答案