Reputation: 73
I've been looking for precise instructions on how to install and setup MinGW 4.6 for Qt 4.7 to no avail. I have no clue as to which MinGW 4.6 packages I have to grab and how to set them up. Qt seems to provide a 'customized' version of MinGW 4.4 with Creator 2.1.0, so it's difficult for me to make an accurate guess based on it. Has anyone done this before? Which packages do I need?
Thank you.
Upvotes: 0
Views: 4858
Reputation: 697
Why not use the official Qt SDK with MinGW and everything you need included? If you don't like to install the SDK here is a list of the used packages that come with the SDK:
w32api-3.13-mingw32-dev
gcc-core-4.4.0-mingw32-bin
That's a section from the manifest.txt inside the QtSDK\mingw folder, some of the packages are further modified or patched so I guess it would be much easier to use the SDK instead or maybe a different compiler. You can also use the Microsoft C++ Compiler (MSVC) besides others compatible with Qt.
Upvotes: 1