无法执行二进制文件:在 WSL 环境中编译的二进制文件出现 Exec 格式错误

问题描述 投票:0回答:2

我最近开始研究 WSL 环境。 我在 WSL 环境中编译了一个类型为“ELF 64 位 LSB 共享对象”的程序,但是当我尝试在同一环境中运行它时,它会抛出错误“无法执行二进制文件:Exec 格式错误”。

我不确定我在这里缺少什么。我怎样才能运行二进制文件。 请推荐。

kshitij@APL-5CD010D2WP:~/runtime/bin$ ioc_broker &
[1] 3579
kshitij@APL-5CD010D2WP:~/runtime/bin$ bash: /bin/ioc_broker: cannot execute binary file: Exec format error
^C
[1]+  Exit 126                ioc_broker
kshitij@APL-5CD010D2WP:~/runtime/bin$ file ioc_broker 
ioc_broker: ELF 64-bit LSB shared object, x86-64, version 1 (GNU/Linux), dynamically linked, interpreter /lib64/ld-linux-x86-64.so.2, BuildID[sha1]=aa1e76d798d46d45f131cb53de8f947ddb4c8526, for GNU/Linux 3.2.0, not stripped
kshitij@APL-5CD010D2WP:~/runtime/bin$ uname -srv
Linux 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 00:30:59 UTC 2022
kshitij@APL-5CD010D2WP:~/runtime/bin$ 

kshitij@APL-5CD010D2WP:/mnt/d/src/myproject/build$ uname -a
Linux APL-5CD010D2WP 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 00:30:59 UTC 2022 x86_64 x86_64 x86_64 GNU/Linux

我已经使用 cmake 编译了二进制文件,其中我没有指定有关所使用的编译器的任何具体信息。

kshitij@APL-5CD010D2WP:/mnt/d/src/myproject/build$ cmake -DCMAKE_INSTALL_PREFIX=/home/kshitij/runtime ..
-- The CXX compiler identification is GNU 9.4.0
-- Check for working CXX compiler: /bin/c++
-- Check for working CXX compiler: /bin/c++ -- works
-- Detecting CXX compiler ABI info
-- Detecting CXX compiler ABI info - done
-- Detecting CXX compile features
-- Detecting CXX compile features - done
-- Line: 57 Using COMMON_API_VERSION 3.1.12

linux ubuntu windows-subsystem-for-linux compatibility elf
2个回答
1
投票

uname -srv

Linux 5.10.102.1-microsoft-standard-WSL2 #1 SMP Wed Mar 2 00:30:59 UTC 2022

尝试使用

uname -a
。它应该将内核标识为
i686
x86_64

我希望您的内核显示

i686
,在这种情况下您已经安装了 32 位 WSL2 并尝试在其上运行 64 位二进制文件。出于明显的原因,这不起作用——您需要 64 位内核才能运行 64 位二进制文件。

更新:

我看到x86_64

好吧,我的猜测是错误的。

Exec format error
的另一个原因是文件在某种程度上已损坏。

一个可能的损坏来源是磁盘空间不足并且文件被截断。检查

df -h .
输出,如果有大量空间,请尝试再次重建二进制文件。

也可以尝试

eu-readelf -a ioc_broker
--
eu-readelf
擅长警告损坏的 ELF 文件。

最后,查看

/var/log/messages
是否有任何内核警告 - 您可能有坏磁盘块或其他问题。


0
投票

该问题的解决方法是:

wsl$ sudo apt install binfmt-support
wsl$ sudo sh -c 'echo :WSLInterop:M::MZ::/init:PF > /usr/lib/binfmt.d/WSLInterop.conf'
wsl$ exit
powershell> wsl --shutdown

来源

© www.soinside.com 2019 - 2024. All rights reserved.