I'm trying to setup my Android Development on a Linux Fedora box by following the guide listed here, HOWTO Setup Android Development - FedoraProject. Unfortunately, I cannot seem to run the yum command to install the 32 bit packages. Specifically running this,

yum install glibc.i686 glibc-devel.i686 libstdc++.i686 zlib-devel.i686 ncurses-devel.i686 libX11-devel.i686 libXrender.i686 libXrandr.i686

outputs these "no package available" messages.

No package glibc-devel.i686 available.
No package libstdc++.i686 available.
No package zlib-devel.i686 available.
No package ncurses-devel.i686 available.
No package libX11-devel.i686 available.
No package libXrender.i686 available.
No package libXrandr.i686 available.

Does anyone have any suggestions on how to install these libraries on my Fedora device?

link|improve this question

This may be a stupid question, but you haven't stated either way - are you definitely running this on a 64-bit machine? You only need to install the 32-bit support libraries on a 64-bit host. I haven't got Fedora, but I assume you can just remove the ".i686" component of the package name on 32-bit hosts. – RivieraKid Apr 8 '11 at 13:02
Well using that fedora guide to android was suggested by this post which is the emulator error I get SDL init failure . "uname -m" yields i686 so you may be right. – Bubbleware Technology Apr 8 '11 at 23:00
feedback

1 Answer

up vote 1 down vote accepted

FYI, it ended up being a 32 bit system so I just needed to run the yum install command for each component without the .i686.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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