-1

I am new in android development and am using linux ubuntu plateform.

When i set path to android-sdk in eclipse or I create a new android project I get this error:

failed to parse the output of 'adb version':

adb version failed:

path_to/android-sdk/platform-tools/adb: error while loading shared libraries:
 libstdc++.so.6: cannot open shared object file: No such file or directory

I am using latest adt-bundle from android site.

Kailas
  • 7,350
  • 3
  • 47
  • 63

1 Answers1

0

You lack 32-bit libraries for ADB. You need to run the following commands in your terminal:

sudo apt-get install libc6-i386 lib32stdc++6
Kailas
  • 7,350
  • 3
  • 47
  • 63
fmcato
  • 172
  • 1
  • 12