I just upgraded my android studio from 1.5 to 2.0.And now I am facing some weird bug when I try to start Emulator. I use Ubuntu 15.10 OS
Android monitor returns this
Same problem for me on Ubuntu 16.04 LTS x64 with :
My graphic card is an AMD/ATI Radeon and I read from this thread on Android Open Source Project - Issue Tracker that :
The root cause of the problem is likely that the Radeon GL driver library requires a more recent libstdc++.so than the one bundled with the emulator.
Here's how I fixed the problem :
Install lib64stdc++6
$ sudo apt-get install lib64stdc++6:i386
Install mesa-demos
$ sudo apt-get install mesa-utils
Move libstdc++.so.6 out of the way by renaming it to libstdc++.so.6.bak
$ cd ~/$ANDROID_HOME/Android/Sdk/tools/lib64/libstdc++
$ mv libstdc++.so.6 libstdc++.so.6.bak