1

I'm running a MIPS image in Qemu and a program I'm trying to run shows that libc.so.0 is not found. Libc.so.6 is found in /lib/mipsel-linux-gnu

Does anyone know where I can find libc.so.0 or solve this issue?

1 Answers1

0

You could make a link to libc.so.6 to correct the problem:

ln -s /lib/mipsel-linux-gnu/libc.so.6 /lib/mipsel-linux-gnu/libc.so.0
chaos
  • 4,304