I need to get 32 bit qt libs
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 b开发者_如何学运维its).
If you already have the generic source, then run configure
with the following option:
./configure --platform=linux-g++-32
sudo apt-get install ia32-libs
According to the content listing at http://packages.ubuntu.com/karmic/ia32-libs it contains 32bit QT.
精彩评论