libc.so.6: cannot open shared object file: No such file or directory

问题描述
执行./qemu-mips ./hello_mips时报错。
错误信息
error while loading shared libraries: libc.so.6: cannot open shared object file: No such file or directory
解决方案

  1. find / -name "libc.so.6"
    显示信息/usr/mips-linux-gnu/lib/libc.so.6
  2. export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/mips-linux-gnu/lib
    路径就是上面找到的路径
  3. source /etc/profile
    使其生效。
    要是还不行,就直接cp过去。

你可能感兴趣的:(论文阅读,物联网,嵌入式硬件)