Error libGL.so: cannot open shared object file using Android emulator

安稳与你 提交于 2019-12-02 17:55:24

On Fedora

sudo yum install mesa-libGL-devel

As I'm using 64-bit Ubuntu 12.04. So, I did this

$ sudo apt-get install git-core gnupg flex bison gperf build-essential \
  zip curl libc6-dev libncurses5-dev:i386 x11proto-core-dev \
  libx11-dev:i386 libreadline6-dev:i386 libgl1-mesa-glx:i386 \
  libgl1-mesa-dev g++-multilib mingw32 openjdk-6-jdk tofrodos \
  python-markdown libxml2-utils xsltproc zlib1g-dev:i386
$ sudo ln -s /usr/lib/i386-linux-gnu/mesa/libGL.so.1 /usr/lib/i386-linux-gnu/libGL.so

This works for me on Ubuntu 14.04 64-bit:

$ sudo apt-get install libgl1-mesa-dri
$ sudo ln -sv /usr/lib/x86_64-linux-gnu/mesa/libGL.so.1 /usr/lib/x86_64-linux-gnu/libGL.so

You don't need the development files for libgl1-mesa, so instead you should/could install libgl1-mesa-dri instead of libgl1-mesa-dev as suggested by others. This saves you a couple of MB of unnecessary files.

Furthermore, the Android applications are either 32 bit or 64 bit.

For a or a 32 bit Ubuntu you require the 32 bit SDK (as 64 bit does not work):

sudo apt-get install libgl1-mesa-dri

Same goes for a 64-bit Ubuntu with a 64-bit SDK.

But for a 64 bit Ubuntu in combination with a 32 bit SDK, you need to specify that you require the 32 bit version of the package:

sudo apt-get install libgl1-mesa-dri:i386

I too had this problem (fedora 20), but the libGL files already existed on my filesystem. Based on an examination of the libraries on an older fedora 18 installation, I found that I could resolve the problem by providing a symbolic link for libGL.so linking to libGL.so.1.2.0.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!