When i try to create a new Android Virtual Device(AVD) on Ubuntu 11.04, i get this error: "Error while loading shared libraries: libstdc++.so.6: cannot open shared object file: no such file or directory. Yes, the library file is in its right place /usr/lib :\

link|improve this question
feedback

2 Answers

I ran into this problem using Ubuntu 11.04 x64, the error was fixed by installing lib32stdc++6, ia32-libs, and lib32ncursesw5

link|improve this answer
feedback

Do

yum install ncurses-libs.i686 libstdc++.i686 glibc.i686

and then try again.

It's a 64 bit install I'm guessing.

link|improve this answer
nope, it didn't find any such packages....:( yeah, this ubuntu is x64, n there's no SDK for linux in x64... – webjack Jul 11 '11 at 17:05
i've zeroed it down.. prob is with /android-sdk/tools/mksdcard. i can create a AVD without an sd card – webjack Jul 11 '11 at 17:12
yes! solved it sudo apt-get install ia32-libs – webjack Jul 11 '11 at 17:58
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.