Reputation: 8312
I have currently got the 64-bit version of Qt5 installed on a 64-bit Ubuntu machine but I'd also like to be able to do 32-bit builds on the same machine. On Windows I can simply select additional kits in the MaintenanceTool but on Linux this doesn't seem to be possible. Or am I missing something?
Upvotes: 7
Views: 3495
Reputation: 761
Three steps:
./configure -platform linux-g++-32
../configure -platform linux-g++-32 -prefix /opt/qt32
or the path that feels comfortable to you. Upvotes: 1