Reputation: 4850
Is there a quick way to obtain a set of 32 bit qt libraries? I need to put them on my 64 bit ubuntu os which already has qt installed (64 bits).
Upvotes: 1
Views: 4070
Reputation:
sudo apt-get install ia32-libs
According to the content listing at http://packages.ubuntu.com/karmic/ia32-libs it contains 32bit QT.
Upvotes: 2
Reputation: 46509
If you already have the generic source, then run configure
with the following option:
./configure --platform=linux-g++-32
Upvotes: 3