error while loading shared libraries: libopcodes-2.34-arm64.so: cannot open shared object file: No such file or directory
时间: 2023-07-13 19:37:43 浏览: 543
ubuntu报错:libg2c.so.0:cannot open shared object file: no such file or directory/wrong ELF class(已解决)-附件资源
这个错误提示是因为程序在运行时无法找到名为"libopcodes-2.34-arm64.so"的共享库文件。可能是因为此库文件未安装或者未添加到LD_LIBRARY_PATH环境变量中。您可以尝试通过以下命令来安装该库文件:
```
sudo apt-get install binutils-dev
```
如果已经安装了该库文件,可以将其所在路径添加到LD_LIBRARY_PATH环境变量中:
```
export LD_LIBRARY_PATH=/path/to/libopcodes-2.34-arm64.so:$LD_LIBRARY_PATH
```
请将命令中的"/path/to/"替换为实际的库文件所在路径。
阅读全文