David Gill
David Gill

Reputation: 8621

Android - Fedora - Installing 32 bit packages

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?

Upvotes: 2

Views: 4200

Answers (2)

Jon Sherwood
Jon Sherwood

Reputation: 41

For Fedora 24

dnf install compat-libstdc++-296 compat-libstdc++-33 glibc libgcc nss-softokn-freebl libstdc++ ncurses-libs zlib-devel.i686 ncurses-devel.i686 ant

Upvotes: 0

David Gill
David Gill

Reputation: 8621

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.

Upvotes: 4

Related Questions