yan bellavance
yan bellavance

Reputation: 4850

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 bits).

Upvotes: 1

Views: 4070

Answers (2)

user321277
user321277

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

Kaleb Pederson
Kaleb Pederson

Reputation: 46509

If you already have the generic source, then run configure with the following option:

./configure --platform=linux-g++-32

Upvotes: 3

Related Questions